Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
1 | <?php |
||
30 | 34 | public function __construct($matcherName, array $arguments) |
|
31 | { |
||
32 | 34 | $this->matcherName = $matcherName; |
|
33 | 34 | $this->arguments = $arguments; |
|
34 | 34 | $matcher = 'Ray\Aop\Matcher\\' . ucwords($this->matcherName) . 'Matcher'; |
|
35 | 34 | $this->matcher = (new \ReflectionClass($matcher))->newInstance(); |
|
36 | 34 | } |
|
37 | |||
54 |