Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class SettingsComposer |
||
9 | { |
||
10 | protected $theme; |
||
11 | |||
12 | /** |
||
13 | * Create a new instance. |
||
14 | * |
||
15 | * @return void |
||
16 | */ |
||
17 | public function __construct() |
||
18 | { |
||
19 | $this->theme = ThemeServices::getTheTheme(); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Bind data to the view. |
||
24 | * |
||
25 | * @param View $view |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | public function compose(View $view) |
||
38 | } |
||
39 | } |
||
40 |