Total Complexity | 5 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class HomeController extends BaseController |
||
12 | { |
||
13 | public function __construct( |
||
14 | protected TagRepository $tagRepository, |
||
15 | protected GuideRepository $guideRepository |
||
16 | ) { |
||
17 | parent::__construct($this->tagRepository); |
||
18 | } |
||
19 | |||
20 | public function index() |
||
23 | } |
||
24 | |||
25 | public function filterByTags(string $tag) |
||
32 | } |
||
33 | |||
34 | private function load() |
||
52 | ]); |
||
53 | } |
||
55 |