Browse Source

Remove unnecessary `$model` property

Shift 2 years ago
parent
commit
abb28548f1

+ 0 - 7
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.
      *

+ 0 - 7
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.
      *

+ 0 - 7
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.
      *

+ 0 - 7
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.
      *

+ 0 - 7
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.
      *

+ 0 - 7
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.
      *

+ 0 - 7
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.
      *