| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function transform(Page $page): array |
||
| 19 | { |
||
| 20 | return $this->escape([ |
||
| 21 | 'id' => (string) $page->getRouteKey(), |
||
| 22 | 'title' => (string) $page->title, |
||
| 23 | 'uri' => (string) $page->uri, |
||
| 24 | 'domain' => (string) $page->domain, |
||
| 25 | 'route' => (string) $page->route, |
||
| 26 | 'view' => (string) $page->view, |
||
| 27 | 'middleware' => (string) $page->middleware, |
||
| 28 | 'sort_order' => (string) $page->sort_order, |
||
| 29 | 'created_at' => (string) $page->created_at, |
||
| 30 | 'updated_at' => (string) $page->updated_at, |
||
| 31 | ]); |
||
| 32 | } |
||
| 33 | } |
||
| 34 |