| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class Settings extends Model |
||
| 27 | { |
||
| 28 | |||
| 29 | // Public Properties |
||
| 30 | // ========================================================================= |
||
| 31 | |||
| 32 | /** |
||
| 33 | * An array of Matrix field handles that should use the nested settings menu |
||
| 34 | * display mode |
||
| 35 | * |
||
| 36 | * @var array |
||
| 37 | */ |
||
| 38 | public $nestedSettings = []; |
||
| 39 | |||
| 40 | // Public Methods |
||
| 41 | // ========================================================================= |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @inheritdoc |
||
| 45 | */ |
||
| 46 | public function rules() |
||
| 53 | } |