Conditions | 2 |
Paths | 2 |
Total Lines | 18 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function __construct() { |
||
21 | if (\MY_Controller::isCorporateCMS()) { |
||
22 | $this->finders = [ |
||
23 | new Pages(), |
||
24 | new PageCategories(), |
||
25 | |||
26 | ]; |
||
27 | } else { |
||
28 | $this->finders = [ |
||
29 | new Brands(), |
||
30 | new Products(), |
||
31 | new ProductCategories(), |
||
32 | new Pages(), |
||
33 | new PageCategories(), |
||
34 | ]; |
||
35 | |||
36 | } |
||
37 | } |
||
38 | |||
59 | } |