| 1 | <?php |
||
| 22 | class WholeMatcher implements MatcherInterface |
||
| 23 | { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Matches all occurrences and returns token list |
||
| 27 | * |
||
| 28 | * @param string $source Source to match tokens |
||
| 29 | * |
||
| 30 | * @param TokenFactoryInterface $factory |
||
| 31 | * |
||
| 32 | * @return array |
||
| 33 | */ |
||
| 34 | 1 | public function match($source, TokenFactoryInterface $factory) |
|
| 41 | } |