1 | <?php |
||
14 | class PredicateNot extends AbstractRule |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * @var \GetSky\ParserExpressions\RuleInterface |
||
19 | */ |
||
20 | protected $rule; |
||
21 | |||
22 | /** |
||
23 | * @param array|string|RuleInterface $rule |
||
24 | * @param string $name |
||
25 | */ |
||
26 | 1 | public function __construct($rule, $name = "PredicateNot") |
|
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | 1 | public function scan(Context $context) |
|
50 | } |
||
51 |