for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* NOTICE OF LICENSE
*
* Part of the Rinvex Fort Package.
* This source file is subject to The MIT License (MIT)
* that is bundled with this package in the LICENSE file.
* Package: Rinvex Fort Package
* License: The MIT License (MIT)
* Link: https://rinvex.com
*/
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
class RinvexFortDatabaseSeeder extends Seeder
You can fix this by adding a namespace to your class:
namespace YourVendor; class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.
{
/**
* {@inheritDoc}
public function run()
Model::unguard();
$this->call(RinvexFortAbilitiesTableSeeder::class);
$this->call(RinvexFortRolesTableSeeder::class);
$this->call(RinvexFortUsersTableSeeder::class);
Model::reguard();
}
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.