1 | <?php |
||
7 | final class CollectionMatcher implements MethodMatcher |
||
8 | { |
||
9 | /** |
||
10 | * @var MethodCollection |
||
11 | */ |
||
12 | private $collection; |
||
13 | |||
14 | /** |
||
15 | * CollectionMatcher constructor. |
||
16 | * |
||
17 | * @param MethodCollection $collection |
||
18 | */ |
||
19 | public function __construct(MethodCollection $collection) |
||
23 | |||
24 | /** {@inheritdoc} */ |
||
25 | public function match($method) |
||
33 | } |
||
34 |