| Total Complexity | 3 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 13 | class MergeChunks implements ShouldQueue |
||
| 14 | { |
||
| 15 | use Dispatchable; |
||
| 16 | use InteractsWithQueue; |
||
| 17 | use Queueable; |
||
| 18 | use SerializesModels; |
||
| 19 | |||
| 20 | private string $chunks_folder; |
||
| 21 | |||
| 22 | private string $merge_path; |
||
| 23 | |||
| 24 | private int $chunk_size; |
||
| 25 | |||
| 26 | private int $total_size; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Create a new job instance. |
||
| 30 | * |
||
| 31 | * @param string $chunks_folder |
||
| 32 | * @param string $merge_path |
||
| 33 | * @param int $chunk_size |
||
| 34 | * @param int $total_size |
||
| 35 | */ |
||
| 36 | public function __construct(string $chunks_folder, string $merge_path, int $chunk_size, int $total_size) |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Execute the job. |
||
| 46 | * |
||
| 47 | * @return void |
||
| 48 | */ |
||
| 49 | public function handle() |
||
| 58 |
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