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