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