Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function read() |
||
29 | { |
||
30 | return [ |
||
31 | 'id' => $this->menuItem->id()->id(), |
||
32 | 'label' => $this->menuItem->link()->label(), |
||
33 | 'url' => $this->menuItem->link()->url(), |
||
34 | 'parent_id' => $this->menuItem->parentId()->id(), |
||
35 | 'created_on' => $this->menuItem->createdOn(), |
||
36 | 'updated_on' => $this->menuItem->updatedOn(), |
||
37 | ]; |
||
38 | } |
||
39 | } |
||
40 |