Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Lines | 11 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
88 | View Code Duplication | public function toArray() { |
|
89 | $array = $this->getAtMembers(); |
||
90 | |||
91 | $array['href'] = $this->href; |
||
92 | |||
93 | if ($this->meta !== null && $this->meta->isEmpty() === false) { |
||
94 | $array['meta'] = $this->meta->toArray(); |
||
95 | } |
||
96 | |||
97 | return $array; |
||
98 | } |
||
99 | } |
||
100 |