| 1 | <?php |
||
| 11 | class Not implements SpecificationInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var SpecificationInterface |
||
| 15 | */ |
||
| 16 | private $parent; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param SpecificationInterface $expr |
||
| 20 | */ |
||
| 21 | public function __construct(SpecificationInterface $expr) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param QueryBuilder $queryBuilder |
||
| 28 | * @param string $dqlAlias |
||
| 29 | * |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function modify(QueryBuilder $queryBuilder, $dqlAlias) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | public function isSatisfiedBy($value) |
||
| 49 | } |
||
| 50 |