Skip to content

Instantly share code, notes, and snippets.

@x2002uwh
Last active January 9, 2017 15:48
Show Gist options
  • Save x2002uwh/9ef24c6a4d87015b1fb6e38ca6ca15bb to your computer and use it in GitHub Desktop.
Save x2002uwh/9ef24c6a4d87015b1fb6e38ca6ca15bb to your computer and use it in GitHub Desktop.
symfony2 Expression validation
use Symfony\Component\Validator\Constraints as Assert;
class Conference
{
/**
* @var \DateTime
*
* @Assert\Expression(
* "this.startDate <= this.endDate",
* message="Start date should be less or equal to end date!"
* )
*/
protected $startDate;
/**
* @var \DateTime
*
* @Assert\Expression(
* "this.endDate >= this.startDate",
* message="End date should be greater or equal to start date!"
* )
*/
protected $endDate;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment