Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function transform(Role $role): array |
||
19 | { |
||
20 | return $this->escape([ |
||
21 | 'id' => (string) $role->getRouteKey(), |
||
22 | 'title' => (string) $role->title, |
||
23 | 'name' => (string) $role->name, |
||
24 | 'created_at' => (string) $role->created_at, |
||
25 | 'updated_at' => (string) $role->updated_at, |
||
26 | ]); |
||
27 | } |
||
28 | } |
||
29 |