Total Complexity | 2 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class LoggingJob implements ShouldQueue |
||
15 | { |
||
16 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
17 | |||
18 | /** |
||
19 | * @var Request |
||
20 | */ |
||
21 | public $request; |
||
22 | |||
23 | /** |
||
24 | * @var Response |
||
25 | */ |
||
26 | public $response; |
||
27 | |||
28 | /** |
||
29 | * Create a new job instance. |
||
30 | * |
||
31 | * @param Request $request |
||
32 | * @param Response $response |
||
33 | */ |
||
34 | public function __construct(Request $request, Response $response) |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * Execute the job. |
||
42 | * |
||
43 | * @return void |
||
44 | */ |
||
45 | public function handle() |
||
52 |
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