Lint
This commit is contained in:
parent
08445cc97a
commit
8c6704faa4
database/factories
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue