Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
13 | public function run() |
||
14 | { |
||
15 | Model::unguard(); |
||
16 | $this->call(UserTableSeeder::class); |
||
17 | $this->call(WarehouseTableSeeder::class); |
||
18 | $this->call(MakeTableSeeder::class); |
||
19 | $this->call(SupplierTableSeeder::class); |
||
20 | $this->call(RackTableSeeder::class); |
||
21 | $this->call(ModelTableSeeder::class); |
||
22 | $this->call(PurchaseTableSeeder::class); |
||
23 | $this->call(GuitarTableSeeder::class); |
||
24 | $this->call(SaleTableSeeder::class); |
||
25 | Model::reguard(); |
||
26 | } |
||
27 | } |
||
28 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.