| Total Complexity | 1 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class Tutorial extends Model |
||
| 21 | { |
||
| 22 | use TableCache; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * The table associated with the model. |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $table = 'tutorials'; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var array |
||
| 33 | */ |
||
| 34 | |||
| 35 | protected $fillable = [ |
||
| 36 | 'permission_id', 'element', 'title', 'content', 'placement', |
||
| 37 | 'order_index', |
||
| 38 | ]; |
||
| 39 | |||
| 40 | protected $casts = [ |
||
| 41 | 'permission_id' => 'integer', 'placement' => 'integer', |
||
| 42 | ]; |
||
| 43 | |||
| 44 | public function permission() |
||
| 49 |
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