I have an Entity with a few custom validators as in:
use Digital\ApplicationBundle\Validator\Constraints\ConstrainsUsername;
use Digital\ApplicationBundle\Validator\Constraints\ConstrainsProduct;
use Digital\ApplicationBundle\Validator\Constraints\ConstrainsGiftValid;
/**
* @DigitalAssert\ConstrainsGiftValid
*/
class Gift
{
/**
* @DigitalAssert\ConstrainsUsername
*/
private $username;
/**
* @DigitalAssert\ConstrainsProduct
*/
private $productName;
[...]
My question is how i can set an order of checking....
I would like to validate my properties first and if properties are valid then I would like to check if those 2 properties are allowed to 'be' together...
So my case requires specific order of the validator.
How this could be accomplished please?
Current issue is my class validation 'ConstrainsGiftValid' kicks in before them ;S
Any help much appreciated.
