| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function toArray() |
||
| 18 | { |
||
| 19 | return [ |
||
| 20 | 'id' => $this->id, |
||
| 21 | 'name' => $this->name, |
||
| 22 | 'description' => $this->description, |
||
| 23 | 'user_id' => $this->user_id, |
||
| 24 | // 'completed' => (Boolean) $this->completed, aquesta linia fa el mateix que la següent. |
||
| 25 | 'completed' => $this->completed ? true : false, |
||
| 26 | 'created_at' => $this->created_at->toDateTimeString(), |
||
| 27 | 'updated_at' => $this->updated_at->toDateTimeString(), |
||
| 28 | ]; |
||
| 31 |