1 | <?php |
||
17 | class InSet implements OperatorInterface |
||
18 | { |
||
19 | private $values; |
||
20 | |||
21 | /** |
||
22 | * @param VectorInterface $values |
||
23 | */ |
||
24 | 8 | public function __construct(VectorInterface $values) |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 6 | public function appliesTo($argument) |
|
37 | |||
38 | /** |
||
39 | * @return VectorInterface |
||
40 | */ |
||
41 | 2 | public function getValues() |
|
45 | } |
||
46 |