Total Complexity | 5 |
Total Lines | 54 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ImageObserver |
||
8 | { |
||
9 | /** |
||
10 | * Handle the image "created" event. |
||
11 | * |
||
12 | * @param \App\Models\Image $image |
||
|
|||
13 | * @return void |
||
14 | */ |
||
15 | public function created(Image $image) |
||
16 | { |
||
17 | // |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Handle the image "updated" event. |
||
22 | * |
||
23 | * @param \App\Models\Image $image |
||
24 | * @return void |
||
25 | */ |
||
26 | public function updated(Image $image) |
||
27 | { |
||
28 | // |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Handle the image "deleted" event. |
||
33 | * |
||
34 | * @param \App\Models\Image $image |
||
35 | * @return void |
||
36 | */ |
||
37 | public function deleted(Image $image) |
||
38 | { |
||
39 | // |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * Handle the image "restored" event. |
||
44 | * |
||
45 | * @param \App\Models\Image $image |
||
46 | * @return void |
||
47 | */ |
||
48 | public function restored(Image $image) |
||
49 | { |
||
50 | // |
||
51 | } |
||
52 | |||
53 | /** |
||
54 | * Handle the image "force deleted" event. |
||
55 | * |
||
56 | * @param \App\Models\Image $image |
||
57 | * @return void |
||
58 | */ |
||
59 | public function forceDeleted(Image $image) |
||
61 | // |
||
62 | } |
||
63 | } |
||
64 |
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