Conditions | 3 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
21 | 48 | public function toArray(): array |
|
22 | { |
||
23 | 48 | $resource = []; |
|
24 | 48 | $identification = $this->getIdentification(); |
|
25 | 48 | if ($identification !== null) { |
|
26 | 42 | $resource = $identification; |
|
27 | } |
||
28 | |||
29 | 48 | if (isset($this->meta)) { |
|
30 | 30 | $resource[Members::META] = $this->meta; |
|
31 | } |
||
32 | |||
33 | 48 | return $resource; |
|
34 | } |
||
47 |