| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class Settings extends Model |
||
| 22 | { |
||
| 23 | // Public Properties |
||
| 24 | // ========================================================================= |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var bool Controls whether to append the template name to the profile |
||
| 28 | * category |
||
| 29 | */ |
||
| 30 | public bool $appendTemplateName = true; |
||
| 31 | |||
| 32 | // Public Methods |
||
| 33 | // ========================================================================= |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @inheritdoc |
||
| 37 | */ |
||
| 38 | public function rules(): array |
||
| 45 |