wiki/content/20201109150640-expression_constraint.md

47 lines
725 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:04:36 +00:00
date: 20201109
2024-05-06 20:40:05 +00:00
id: 4331b4ee-c987-4e04-8a46-3b8d30e13581
title: Expression Constraint
---
# Syntax
``` php
use Symfony\Component\Validator\Constraints as Assert;
class Event
{
/** @Assert\DateTime() */
private $startDate;
/**
* @Assert\DateTime()
* @Assert\Expression("value > this.startDate")
*/
private $endDate;
// ...
}
```
In [Symfony 4.0](20201109140137-symfony_4_0) a new `propertyPath` option
was added:
``` php
use Symfony\Component\Validator\Constraints as Assert;
class Event
{
/** @Assert\DateTime() */
private $startDate;
/**
* @Assert\DateTime()
* @Assert\GreaterThan(propertyPath="startDate")
*/
private $endDate;
// ...
}
```