Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | public function handle() |
||
41 | { |
||
42 | DB::transaction(function () { |
||
43 | // Delete exchange registry. |
||
44 | resolve(ExchangeRegistry::class)->truncate(); |
||
45 | |||
46 | // Delete exchanges. |
||
47 | Exchange::query()->delete(); |
||
|
|||
48 | |||
49 | // Delete enrollments |
||
50 | Enrollment::query()->delete(); |
||
51 | |||
52 | // Delete all shifts. |
||
53 | Shift::query()->delete(); |
||
54 | }); |
||
57 |
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