jobtech-dev /
laravel-chunky
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Jobtech\LaravelChunky\Contracts; |
||
| 4 | |||
| 5 | use Jobtech\LaravelChunky\Http\Requests\AddChunkRequest; |
||
| 6 | |||
| 7 | interface MergeHandler |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param \Jobtech\LaravelChunky\Contracts\ChunkyManager $manager |
||
| 11 | * @return \Jobtech\LaravelChunky\Handlers\MergeHandler |
||
| 12 | */ |
||
| 13 | public function setManager(ChunkyManager $manager): MergeHandler; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return \Jobtech\LaravelChunky\Contracts\ChunkyManager |
||
| 17 | * @throws \Illuminate\Contracts\Container\BindingResolutionException |
||
| 18 | */ |
||
| 19 | public function manager(): ChunkyManager; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param \Jobtech\LaravelChunky\Http\Requests\AddChunkRequest $request |
||
| 23 | * @param string $folder |
||
| 24 | * |
||
| 25 | * @return \Illuminate\Foundation\Bus\PendingDispatch|string |
||
|
0 ignored issues
–
show
|
|||
| 26 | */ |
||
| 27 | public function dispatchMerge(AddChunkRequest $request, string $folder); |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $chunks_folder |
||
| 31 | * @param string $merge_destination |
||
| 32 | * |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function merge(string $chunks_folder, string $merge_destination): string; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return \Jobtech\LaravelChunky\Contracts\MergeHandler |
||
| 39 | */ |
||
| 40 | public static function instance(): MergeHandler; |
||
| 41 | } |
||
| 42 |
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