From df2d3d03bad9c1f52248056361ec6adf98786715 Mon Sep 17 00:00:00 2001 From: Shift Date: Sun, 19 Feb 2023 16:19:05 +0000 Subject: [PATCH] Remove unnecessary `$model` property --- database/factories/BitcoinEventFactory.php | 7 ------- database/factories/BookCaseFactory.php | 7 ------- database/factories/CategoryFactory.php | 7 ------- database/factories/CityFactory.php | 7 ------- database/factories/CountryFactory.php | 7 ------- database/factories/CourseFactory.php | 7 ------- database/factories/EpisodeFactory.php | 7 ------- database/factories/LecturerFactory.php | 7 ------- database/factories/LibraryFactory.php | 7 ------- database/factories/MeetupEventFactory.php | 7 ------- database/factories/MeetupFactory.php | 7 ------- database/factories/OrangePillFactory.php | 7 ------- database/factories/ParticipantFactory.php | 7 ------- database/factories/PodcastFactory.php | 7 ------- database/factories/RegistrationFactory.php | 7 ------- database/factories/TeamFactory.php | 7 ------- database/factories/UserFactory.php | 7 ------- database/factories/VenueFactory.php | 7 ------- 18 files changed, 126 deletions(-) diff --git a/database/factories/BitcoinEventFactory.php b/database/factories/BitcoinEventFactory.php index 08071072..5d84e561 100644 --- a/database/factories/BitcoinEventFactory.php +++ b/database/factories/BitcoinEventFactory.php @@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class BitcoinEventFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = BitcoinEvent::class; - /** * Define the model's default state. * diff --git a/database/factories/BookCaseFactory.php b/database/factories/BookCaseFactory.php index 47e79932..6e62f71c 100644 --- a/database/factories/BookCaseFactory.php +++ b/database/factories/BookCaseFactory.php @@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class BookCaseFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = BookCase::class; - /** * Define the model's default state. * diff --git a/database/factories/CategoryFactory.php b/database/factories/CategoryFactory.php index 6eb5f17c..5e9cc00b 100644 --- a/database/factories/CategoryFactory.php +++ b/database/factories/CategoryFactory.php @@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class CategoryFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Category::class; - /** * Define the model's default state. * diff --git a/database/factories/CityFactory.php b/database/factories/CityFactory.php index 86f62218..70d8f7aa 100644 --- a/database/factories/CityFactory.php +++ b/database/factories/CityFactory.php @@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class CityFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = City::class; - /** * Define the model's default state. * diff --git a/database/factories/CountryFactory.php b/database/factories/CountryFactory.php index f218fd7c..83691b2e 100644 --- a/database/factories/CountryFactory.php +++ b/database/factories/CountryFactory.php @@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class CountryFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Country::class; - /** * Define the model's default state. * diff --git a/database/factories/CourseFactory.php b/database/factories/CourseFactory.php index f12cb13d..69b2a769 100644 --- a/database/factories/CourseFactory.php +++ b/database/factories/CourseFactory.php @@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class CourseFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Course::class; - /** * Define the model's default state. * diff --git a/database/factories/EpisodeFactory.php b/database/factories/EpisodeFactory.php index b837eb23..4047d8a8 100644 --- a/database/factories/EpisodeFactory.php +++ b/database/factories/EpisodeFactory.php @@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class EpisodeFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Episode::class; - /** * Define the model's default state. * diff --git a/database/factories/LecturerFactory.php b/database/factories/LecturerFactory.php index 1da18336..f08d7644 100644 --- a/database/factories/LecturerFactory.php +++ b/database/factories/LecturerFactory.php @@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class LecturerFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Lecturer::class; - /** * Define the model's default state. * diff --git a/database/factories/LibraryFactory.php b/database/factories/LibraryFactory.php index ff735bd4..1858bd9f 100644 --- a/database/factories/LibraryFactory.php +++ b/database/factories/LibraryFactory.php @@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class LibraryFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Library::class; - /** * Define the model's default state. * diff --git a/database/factories/MeetupEventFactory.php b/database/factories/MeetupEventFactory.php index 94dee0cc..45a224f4 100644 --- a/database/factories/MeetupEventFactory.php +++ b/database/factories/MeetupEventFactory.php @@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class MeetupEventFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = MeetupEvent::class; - /** * Define the model's default state. * diff --git a/database/factories/MeetupFactory.php b/database/factories/MeetupFactory.php index 6a150db7..11ab9c6e 100644 --- a/database/factories/MeetupFactory.php +++ b/database/factories/MeetupFactory.php @@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class MeetupFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Meetup::class; - /** * Define the model's default state. * diff --git a/database/factories/OrangePillFactory.php b/database/factories/OrangePillFactory.php index 546aff6d..693d2ad4 100644 --- a/database/factories/OrangePillFactory.php +++ b/database/factories/OrangePillFactory.php @@ -9,13 +9,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class OrangePillFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = OrangePill::class; - /** * Define the model's default state. * diff --git a/database/factories/ParticipantFactory.php b/database/factories/ParticipantFactory.php index d61e66a1..621fa735 100644 --- a/database/factories/ParticipantFactory.php +++ b/database/factories/ParticipantFactory.php @@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class ParticipantFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Participant::class; - /** * Define the model's default state. * diff --git a/database/factories/PodcastFactory.php b/database/factories/PodcastFactory.php index 06c12657..6b831c5d 100644 --- a/database/factories/PodcastFactory.php +++ b/database/factories/PodcastFactory.php @@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class PodcastFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Podcast::class; - /** * Define the model's default state. * diff --git a/database/factories/RegistrationFactory.php b/database/factories/RegistrationFactory.php index f2a76b9a..147939cd 100644 --- a/database/factories/RegistrationFactory.php +++ b/database/factories/RegistrationFactory.php @@ -9,13 +9,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class RegistrationFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Registration::class; - /** * Define the model's default state. * diff --git a/database/factories/TeamFactory.php b/database/factories/TeamFactory.php index abfd9d9f..8321880f 100644 --- a/database/factories/TeamFactory.php +++ b/database/factories/TeamFactory.php @@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class TeamFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Team::class; - /** * Define the model's default state. * diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index 87058985..350b5011 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -10,13 +10,6 @@ use Laravel\Jetstream\Features; class UserFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = User::class; - /** * Define the model's default state. * diff --git a/database/factories/VenueFactory.php b/database/factories/VenueFactory.php index 8362f397..ea2a62b7 100644 --- a/database/factories/VenueFactory.php +++ b/database/factories/VenueFactory.php @@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class VenueFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Venue::class; - /** * Define the model's default state. *