Conditions | 3 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
64 | 50 | public function toArray() { |
|
65 | 50 | $array = parent::toArray(); |
|
66 | |||
67 | 50 | $array['data'] = null; |
|
68 | |||
69 | 50 | if ($this->includedResources !== []) { |
|
70 | 13 | $array['included'] = []; |
|
71 | 13 | foreach ($this->includedResources as $resource) { |
|
72 | 13 | $array['included'][] = $resource->toArray(); |
|
73 | } |
||
74 | } |
||
75 | |||
76 | 50 | return $array; |
|
77 | } |
||
79 |