Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | class CompositeTokenModifier implements TokenModifierInterface |
||
8 | { |
||
9 | private $tokenModifiers = []; |
||
10 | |||
11 | 2 | public function addTokenModifier(TokenModifierInterface $tokenModifier) |
|
12 | { |
||
13 | 2 | $this->tokenModifiers[] = $tokenModifier; |
|
14 | 2 | return $this; |
|
15 | } |
||
16 | |||
17 | 2 | public function modifyAll(TokenCollection $tokenCollection): TokenCollection |
|
23 | } |
||
24 | } |
||
25 |