Remove unnecessary $model property

This commit is contained in:
Shift
2023-02-19 16:19:05 +00:00
committed by HolgerHatGarKeineNode
parent e3c175e5fe
commit df2d3d03ba
18 changed files with 0 additions and 126 deletions

View File

@@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class BitcoinEventFactory extends 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. * Define the model's default state.
* *

View File

@@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class BookCaseFactory extends 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. * Define the model's default state.
* *

View File

@@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class CategoryFactory extends 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. * Define the model's default state.
* *

View File

@@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class CityFactory extends 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. * Define the model's default state.
* *

View File

@@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class CountryFactory extends 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. * Define the model's default state.
* *

View File

@@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class CourseFactory extends 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. * Define the model's default state.
* *

View File

@@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class EpisodeFactory extends 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. * Define the model's default state.
* *

View File

@@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class LecturerFactory extends 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. * Define the model's default state.
* *

View File

@@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class LibraryFactory extends 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. * Define the model's default state.
* *

View File

@@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class MeetupEventFactory extends 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. * Define the model's default state.
* *

View File

@@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class MeetupFactory extends 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. * Define the model's default state.
* *

View File

@@ -9,13 +9,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class OrangePillFactory extends 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. * Define the model's default state.
* *

View File

@@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class ParticipantFactory extends 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. * Define the model's default state.
* *

View File

@@ -7,13 +7,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class PodcastFactory extends 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. * Define the model's default state.
* *

View File

@@ -9,13 +9,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class RegistrationFactory extends 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. * Define the model's default state.
* *

View File

@@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class TeamFactory extends 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. * Define the model's default state.
* *

View File

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

View File

@@ -8,13 +8,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class VenueFactory extends 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. * Define the model's default state.
* *