1 | <?php |
||
19 | class ArrayEveryEntryToken implements TokenInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var TokenInterface |
||
23 | */ |
||
24 | private $value; |
||
25 | |||
26 | /** |
||
27 | * @param mixed $value exact value or token |
||
28 | */ |
||
29 | public function __construct($value) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function scoreArgument($argument) |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function isLast() |
||
66 | |||
67 | /** |
||
68 | * {@inheritdoc} |
||
69 | */ |
||
70 | public function __toString() |
||
74 | |||
75 | /** |
||
76 | * @return TokenInterface |
||
77 | */ |
||
78 | public function getValue() |
||
82 | } |
||
83 |