Total Complexity | 1 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class Settings extends Model |
||
22 | { |
||
23 | // Public Properties |
||
24 | // ========================================================================= |
||
25 | |||
26 | /** |
||
27 | * If set to `true` then Minify will not minify anything |
||
28 | * |
||
29 | * @var bool |
||
30 | */ |
||
31 | public bool $disableTemplateMinifying = false; |
||
32 | |||
33 | /** |
||
34 | * If set to `true` then Minify will not minify anything if `devMode` is enabled |
||
35 | * |
||
36 | * @var bool |
||
37 | */ |
||
38 | public bool $disableDevModeMinifying = true; |
||
39 | |||
40 | |||
41 | // Public Methods |
||
42 | // ========================================================================= |
||
43 | |||
44 | /** |
||
45 | * @inheritdoc |
||
46 | */ |
||
47 | public function rules(): array |
||
57 |