| Total Complexity | 5 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 8 | class DummyField extends AbstractField |
||
| 9 | { |
||
| 10 | protected $hidden = [ |
||
| 11 | 'list' => true, |
||
| 12 | 'edit' => false, |
||
| 13 | 'create' => false, |
||
| 14 | ]; |
||
| 15 | |||
| 16 | 1 | public function shouldSkip(Request $request) |
|
| 17 | { |
||
| 18 | 1 | return true; |
|
| 19 | } |
||
| 20 | |||
| 21 | 1 | public function getListView($model) |
|
| 26 | ]); |
||
| 27 | } |
||
| 28 | |||
| 29 | 1 | public function getEditFormView($model) |
|
| 36 | ]); |
||
| 37 | } |
||
| 38 | |||
| 39 | 1 | public function getCreateFormView() |
|
| 43 | ]); |
||
| 44 | } |
||
| 46 |
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