Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
42 | public function __construct( |
||
43 | CoroutineContextShared $shared, |
||
44 | ObjectType $type, |
||
45 | $value, |
||
46 | $result, |
||
47 | array $path, |
||
48 | ?array $nullFence = null |
||
49 | ) { |
||
50 | $this->shared = $shared; |
||
51 | $this->type = $type; |
||
52 | $this->value = $value; |
||
53 | $this->result = $result; |
||
54 | $this->path = $path; |
||
55 | $this->nullFence = $nullFence; |
||
56 | } |
||
58 |