modularsoftware /
genealogy
| 1 | <?php |
||
| 2 | |||
| 3 | namespace App\Jobs\Tenant; |
||
| 4 | |||
| 5 | use App\Models\enso\companies\Company; |
||
|
0 ignored issues
–
show
|
|||
| 6 | use App\Service\Tenant; |
||
| 7 | use Illuminate\Bus\Queueable; |
||
| 8 | use Illuminate\Contracts\Queue\ShouldQueue; |
||
| 9 | use Illuminate\Foundation\Bus\Dispatchable; |
||
| 10 | use Illuminate\Queue\InteractsWithQueue; |
||
| 11 | use Illuminate\Queue\SerializesModels; |
||
| 12 | use Illuminate\Support\Facades\DB; |
||
| 13 | use LaravelEnso\Multitenancy\Traits\TenantResolver; |
||
| 14 | |||
| 15 | class CreateDB implements ShouldQueue |
||
| 16 | { |
||
| 17 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, TenantResolver; |
||
|
0 ignored issues
–
show
|
|||
| 18 | private $tenant; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Create a new job instance. |
||
| 22 | * |
||
| 23 | * @return void |
||
| 24 | */ |
||
| 25 | public function __construct(Company $tenant) |
||
| 26 | { |
||
| 27 | // |
||
| 28 | $this->tenant = $tenant; |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Execute the job. |
||
| 33 | * |
||
| 34 | * @return void |
||
| 35 | */ |
||
| 36 | public function handle() |
||
| 37 | { |
||
| 38 | // |
||
| 39 | Tenant::set($this->tenant); |
||
| 40 | |||
| 41 | DB::statement('CREATE DATABASE '.$this->tenantDatabase()); |
||
| 42 | } |
||
| 43 | } |
||
| 44 |
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