| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function getMenu(): array |
||
| 26 | { |
||
| 27 | $data = []; |
||
| 28 | //get the categories from database |
||
| 29 | $categories = $this->getCategories(); |
||
| 30 | foreach ($categories as $category) { |
||
| 31 | $data += [ |
||
| 32 | $category->category_name => '/category/posts/' . $category->categories_slug |
||
| 33 | ]; |
||
| 34 | } |
||
| 35 | return $data; |
||
| 36 | } |
||
| 42 | } |