| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 120 | public function toArray() |
||
| 121 | { |
||
| 122 | return [ |
||
| 123 | 'last_name' => $this->lastName, |
||
| 124 | 'first_name' => $this->firstName, |
||
| 125 | 'username' => $this->userName, |
||
| 126 | 'about' => $this->about, |
||
| 127 | 'location' => $this->location, |
||
| 128 | 'website_url' => $this->websiteUrl, |
||
| 129 | 'profile_image' => $this->image, |
||
| 130 | ]; |
||
| 131 | } |
||
| 132 | |||
| 142 | } |