Last active
January 9, 2017 15:48
-
-
Save x2002uwh/9ef24c6a4d87015b1fb6e38ca6ca15bb to your computer and use it in GitHub Desktop.
symfony2 Expression validation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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