| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function read() |
||
| 29 | { |
||
| 30 | if (!$this->project instanceof Project) { |
||
| 31 | return []; |
||
| 32 | } |
||
| 33 | |||
| 34 | return [ |
||
| 35 | 'id' => $this->project->id()->id(), |
||
| 36 | 'name' => $this->project->name()->name(), |
||
| 37 | 'slug' => $this->project->slug()->slug(), |
||
| 38 | 'created_on' => $this->project->createdOn()->format('Y-m-d'), |
||
| 39 | 'updated_on' => $this->project->updatedOn()->format('Y-m-d'), |
||
| 40 | 'organization_id' => $this->project->organizationId()->id(), |
||
| 41 | ]; |
||
| 42 | } |
||
| 43 | } |
||
| 44 |