Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
44 | public function __construct(Context $context, ObjectValue $recv, FunctionObject $function_object, WrapperInterface $wrapper) |
||
45 | { |
||
46 | $this->context = $context; |
||
47 | $this->recv = $recv; |
||
48 | $this->function_object = $function_object; |
||
49 | $this->wrapper = $wrapper; |
||
50 | } |
||
51 | |||
73 |