Total Complexity | 3 |
Total Lines | 57 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class CurrencyCleanup extends Command |
||
9 | { |
||
10 | /** |
||
11 | * The name and signature of the console command. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $signature = 'currency:cleanup'; |
||
16 | |||
17 | /** |
||
18 | * The console command description. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = 'Cleanup currency cache'; |
||
23 | |||
24 | /** |
||
25 | * Currency instance |
||
26 | * |
||
27 | * @var \Torann\Currency\Currency |
||
|
|||
28 | */ |
||
29 | protected $currency; |
||
30 | |||
31 | /** |
||
32 | * Create a new command instance. |
||
33 | */ |
||
34 | public function __construct() |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * Execute the console command for Laravel 5.4 and below |
||
43 | * |
||
44 | * @return void |
||
45 | */ |
||
46 | public function fire() |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * Execute the console command. |
||
53 | * |
||
54 | * @return void |
||
55 | */ |
||
56 | public function handle() |
||
67 |
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