| 1 | <?php |
||
| 19 | abstract class CompositeMatcher implements MatcherInterface |
||
| 20 | { |
||
| 21 | use Traits\PluginsTrait; |
||
| 22 | protected $matchers = []; |
||
| 23 | private $wasConstructed = false; |
||
| 24 | |||
| 25 | 61 | public function add($matcher) |
|
| 29 | |||
| 30 | 61 | public function matches($string, &$value) |
|
| 39 | |||
| 40 | 59 | protected function build() |
|
| 44 | |||
| 45 | abstract protected function match($string, &$value); |
||
| 46 | } |
||
| 47 |