This commit is contained in:
philipp lang 2022-02-12 01:10:29 +01:00
parent 08445cc97a
commit 8c6704faa4
6 changed files with 5 additions and 30 deletions

View File

@ -7,11 +7,7 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class CountryFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Country::class;
/**

View File

@ -11,11 +11,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class CourseFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
public $model = Course::class;
/**

View File

@ -7,11 +7,7 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class FeeFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Fee::class;
/**

View File

@ -7,11 +7,7 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class GroupFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Group::class;
/**

View File

@ -16,11 +16,7 @@ use Illuminate\Database\Eloquent\Factories\Factory;
*/
class MemberFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Member::class;
/**

View File

@ -7,11 +7,7 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class NationalityFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Nationality::class;
/**