Remove unnecessary $model property

This commit is contained in:
Shift
2024-02-16 20:33:37 +00:00
parent 0f4b336d82
commit ad86e54f37
3 changed files with 0 additions and 21 deletions

View File

@@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class ItemFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Item::class;
/**
* Define the model's default state.
*

View File

@@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class ItemTagFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = ItemTag::class;
/**
* Define the model's default state.
*

View File

@@ -8,13 +8,6 @@ use Illuminate\Support\Str;
class UserFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = User::class;
/**
* Define the model's default state.
*