| 1 | <?php |
||
| 19 | final class DefaultMatcherRegistry implements MatcherRegistry |
||
| 20 | { |
||
| 21 | use MatcherLookupTable; |
||
| 22 | |||
| 23 | public function __construct(array $matchers = []) |
||
| 27 | |||
| 28 | public function register(MatcherClass $matcherClass) |
||
| 39 | |||
| 40 | public function count() |
||
| 41 | { |
||
| 42 | return count($this->matchers); |
||
| 43 | } |
||
| 44 | |||
| 45 | public function toDictionary() |
||
| 51 | } |
||
| 52 |