Conditions | 8 |
Paths | 8 |
Total Lines | 26 |
Code Lines | 24 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function fireEventFor($status, $message) |
||
37 | { |
||
38 | switch ($status) { |
||
39 | case 'PROGRESSING': |
||
40 | event(new ConversionIsProgressing($message)); |
||
|
|||
41 | break; |
||
42 | case 'INPUT_INFORMATION': |
||
43 | event(new ConversionHasInputInformation($message)); |
||
44 | break; |
||
45 | case 'COMPLETE': |
||
46 | event(new ConversionHasCompleted($message)); |
||
47 | break; |
||
48 | case 'STATUS_UPDATE': |
||
49 | event(new ConversionHasStatusUpdate($message)); |
||
50 | break; |
||
51 | case 'NEW_WARNING': |
||
52 | event(new ConversionHasNewWarning($message)); |
||
53 | break; |
||
54 | case 'QUEUE_HOP': |
||
55 | event(new ConversionQueueHop($message)); |
||
56 | break; |
||
57 | case 'ERROR': |
||
58 | event(new ConversionHasError($message)); |
||
59 | break; |
||
60 | default: |
||
61 | throw new \Exception(); |
||
62 | } |
||
65 |
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