Remove unnecessary $model property

This commit is contained in:
Shift 2023-01-05 17:02:37 +00:00
parent acb0c08ab4
commit abb28548f1
No known key found for this signature in database
GPG key ID: 5A96F038425C5A1C
7 changed files with 0 additions and 49 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class UsefulLinkFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = UsefulLink::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.
*