| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 5 | ||
| Bugs | 1 | Features | 2 |
| 1 | <?php |
||
| 13 | public function run() |
||
| 14 | { |
||
| 15 | Model::unguard(); |
||
| 16 | $this->call(UserTableSeeder::class); |
||
| 17 | $this->call(MakesTableSeeder::class); |
||
| 18 | $this->call(ModelsTableSeeder::class); |
||
| 19 | $this->call(SuppliersTableSeeder::class); |
||
| 20 | $this->call(ShopsTableSeeder::class); |
||
| 21 | $this->call(WarehousesTableSeeder::class); |
||
| 22 | $this->call(RacksTableSeeder::class); |
||
| 23 | $this->call(PurchasesTableSeeder::class); |
||
| 24 | $this->call(GuitarsTableSeeder::class); |
||
| 25 | $this->call(NotificationsTableSeeder::class); |
||
| 26 | $this->call(SalesTableSeeder::class); |
||
| 27 | Model::reguard(); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |
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.