Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace VojtaSvoboda\Reviews\Components; |
||
32 | public function onRun() |
||
33 | { |
||
34 | // category filter |
||
35 | $category = null; |
||
36 | if ($categorySlug = $this->property('categoryFilter')) { |
||
37 | $category = $this->getCategory($categorySlug); |
||
38 | } |
||
39 | $this->page['category'] = $category; |
||
40 | $this->page['reviews'] = $this->reviews($category); |
||
41 | } |
||
42 | |||
81 |