Conditions | 4 |
Paths | 8 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 0 |
1 | <?php |
||
94 | public function toArray() |
||
95 | { |
||
96 | $data = []; |
||
97 | if ($this->name !== null) { |
||
98 | $data['name'] = $this->name; |
||
99 | } |
||
100 | if ($this->email !== null) { |
||
101 | $data['email'] = $this->email; |
||
102 | } |
||
103 | if ($this->phone !== null) { |
||
104 | $data['phone'] = $this->phone; |
||
105 | } |
||
106 | |||
107 | return $data; |
||
108 | } |
||
109 | |||
127 |