| 1 | <?php |
||
| 14 | class ExistingAggregateRoot extends Constraint |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | public $class; |
||
| 20 | |||
| 21 | public $message = 'Object not found.'; |
||
| 22 | |||
| 23 | public $nullMessage = 'This cannot be empty.'; |
||
| 24 | |||
| 25 | public function validatedBy() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | public function __construct($options = null) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | public function getDefaultOption() |
||
| 45 | } |
||
| 46 |