Issues (44)

Tests/Seeders/DatabaseConfigurationSeeder.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Ikechukwukalu\Dynamicdatabaseconfig\Tests\Seeders;
4
5
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
0 ignored issues
show
The type Illuminate\Database\Cons...eeds\WithoutModelEvents was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
6
use Illuminate\Database\Seeder;
7
use Ikechukwukalu\Dynamicdatabaseconfig\Models\DatabaseConfiguration;
8
9
class DatabaseConfigurationSeeder extends Seeder
10
{
11
    /**
12
     * Run the database seeds.
13
     */
14
    public function run(): void
15
    {
16
        $config = \Config::get('database.connections.test_bench');
17
        $config['database'] = 'two_db';
18
19
        DatabaseConfiguration::firstOrCreate(
20
        ['ref' => 'two'],
21
        [
22
            'ref' => 'two',
23
            'name' => 'test_bench_two',
24
            'database' => 'test_bench',
25
            'configuration' => $config
26
        ]);
27
    }
28
}
29