| 1 | <?php |
||
| 33 | class DefaultMatcherFactory implements MatcherFactory |
||
| 34 | { |
||
| 35 | /** |
||
| 36 | * @var \expect\MatcherContainer |
||
| 37 | */ |
||
| 38 | private $container; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param \expect\MatcherContainer $container macther container |
||
| 42 | */ |
||
| 43 | public function __construct(MatcherContainer $container) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * {@inheritdoc} |
||
| 50 | */ |
||
| 51 | public function create($name, array $arguments = []) |
||
| 63 | } |
||
| 64 |