Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
37 | 1 | public function __construct( |
|
38 | Argument $callee, |
||
39 | string $methodName, |
||
40 | array $arguments |
||
41 | ) { |
||
42 | 1 | $this->callee = $callee; |
|
43 | 1 | $this->methodName = $methodName; |
|
44 | $this->arguments = array_map(function (Argument $argument): Argument { |
||
45 | 1 | return $argument; |
|
46 | 1 | }, $arguments); |
|
47 | 1 | } |
|
48 | |||
69 |