1 | <?php |
||
9 | trait FilterBasedSatisfaction |
||
10 | { |
||
11 | /** |
||
12 | * {@inheritdoc} |
||
13 | */ |
||
14 | abstract public function filter($target, array $parameters, array $operators, ExecutionContext $context); |
||
15 | |||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | public function satisfies($target, array $parameters, array $operators, ExecutionContext $context): bool |
||
23 | } |
||
24 |