| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class DBM_MenuItem extends Model |
||
| 8 | { |
||
| 9 | protected $table = 'menu_items'; |
||
| 10 | // |
||
| 11 | protected $fillable = [ |
||
| 12 | 'title', |
||
| 13 | 'slug', |
||
| 14 | 'order', |
||
| 15 | 'parent_id', |
||
| 16 | ]; |
||
| 17 | |||
| 18 | protected $cast = [ |
||
| 19 | 'params' => 'array', |
||
| 20 | ]; |
||
| 21 | |||
| 22 | public function children() |
||
| 25 | } |
||
| 26 | |||
| 27 | // recursive, loads all descendants |
||
| 28 | public function childrens() |
||
| 31 | } |
||
| 32 | |||
| 33 | public function settings() |
||
| 38 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths