diff --git a/database/factories/ApplicationApiFactory.php b/database/factories/ApplicationApiFactory.php index ed8d5a51..52661972 100644 --- a/database/factories/ApplicationApiFactory.php +++ b/database/factories/ApplicationApiFactory.php @@ -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. * diff --git a/database/factories/DiscordUserFactory.php b/database/factories/DiscordUserFactory.php index 0983acc1..3a0b192e 100644 --- a/database/factories/DiscordUserFactory.php +++ b/database/factories/DiscordUserFactory.php @@ -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. * diff --git a/database/factories/PaymentFactory.php b/database/factories/PaymentFactory.php index 72ecc37e..82390b54 100644 --- a/database/factories/PaymentFactory.php +++ b/database/factories/PaymentFactory.php @@ -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. * diff --git a/database/factories/ProductFactory.php b/database/factories/ProductFactory.php index 525b0d7c..31586684 100644 --- a/database/factories/ProductFactory.php +++ b/database/factories/ProductFactory.php @@ -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. * diff --git a/database/factories/ServerFactory.php b/database/factories/ServerFactory.php index 4b608cb6..b2bcc34f 100644 --- a/database/factories/ServerFactory.php +++ b/database/factories/ServerFactory.php @@ -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. * diff --git a/database/factories/UsefulLinkFactory.php b/database/factories/UsefulLinkFactory.php index e507b373..75c825a7 100644 --- a/database/factories/UsefulLinkFactory.php +++ b/database/factories/UsefulLinkFactory.php @@ -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. * diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index e552ed16..bf5f0568 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -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. *