diff --git a/database/factories/AccountFactory.php b/database/factories/AccountFactory.php index c32c300b9..66220630d 100644 --- a/database/factories/AccountFactory.php +++ b/database/factories/AccountFactory.php @@ -17,13 +17,6 @@ use Illuminate\Support\Str; class AccountFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Account::class; - /** * Define the model's default state. * diff --git a/database/factories/ClientContactFactory.php b/database/factories/ClientContactFactory.php index a27da4b84..473f919c3 100644 --- a/database/factories/ClientContactFactory.php +++ b/database/factories/ClientContactFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class ClientContactFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = ClientContact::class; - /** * Define the model's default state. * diff --git a/database/factories/ClientFactory.php b/database/factories/ClientFactory.php index 283848640..045bdddf0 100644 --- a/database/factories/ClientFactory.php +++ b/database/factories/ClientFactory.php @@ -17,13 +17,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class ClientFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Client::class; - /** * Define the model's default state. * diff --git a/database/factories/CompanyFactory.php b/database/factories/CompanyFactory.php index 75952d9e0..74c6427df 100644 --- a/database/factories/CompanyFactory.php +++ b/database/factories/CompanyFactory.php @@ -19,14 +19,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class CompanyFactory extends Factory { use MakesHash; - - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Company::class; - /** * Define the model's default state. * diff --git a/database/factories/CreditFactory.php b/database/factories/CreditFactory.php index 86dbcdd23..852e43e14 100644 --- a/database/factories/CreditFactory.php +++ b/database/factories/CreditFactory.php @@ -17,13 +17,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class CreditFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Credit::class; - /** * Define the model's default state. * diff --git a/database/factories/CreditInvitationFactory.php b/database/factories/CreditInvitationFactory.php index 15568eea6..950d6e843 100644 --- a/database/factories/CreditInvitationFactory.php +++ b/database/factories/CreditInvitationFactory.php @@ -17,13 +17,6 @@ use Illuminate\Support\Str; class CreditInvitationFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = CreditInvitation::class; - /** * Define the model's default state. * diff --git a/database/factories/DocumentFactory.php b/database/factories/DocumentFactory.php index 6a2956c6d..0b2642a84 100644 --- a/database/factories/DocumentFactory.php +++ b/database/factories/DocumentFactory.php @@ -17,13 +17,6 @@ use Illuminate\Support\Str; class DocumentFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Document::class; - /** * Define the model's default state. * diff --git a/database/factories/ExpenseCategoryFactory.php b/database/factories/ExpenseCategoryFactory.php index 662ad68b9..b158299b8 100644 --- a/database/factories/ExpenseCategoryFactory.php +++ b/database/factories/ExpenseCategoryFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class ExpenseCategoryFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = ExpenseCategory::class; - /** * Define the model's default state. * diff --git a/database/factories/ExpenseFactory.php b/database/factories/ExpenseFactory.php index 7d0b49949..8560fc2ce 100644 --- a/database/factories/ExpenseFactory.php +++ b/database/factories/ExpenseFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class ExpenseFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Expense::class; - /** * Define the model's default state. * diff --git a/database/factories/GatewayFactory.php b/database/factories/GatewayFactory.php index 05171aeac..d21f6ddcb 100644 --- a/database/factories/GatewayFactory.php +++ b/database/factories/GatewayFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class GatewayFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Gateway::class; - /** * Define the model's default state. * diff --git a/database/factories/InvoiceFactory.php b/database/factories/InvoiceFactory.php index d56551bde..2236a0f10 100644 --- a/database/factories/InvoiceFactory.php +++ b/database/factories/InvoiceFactory.php @@ -17,13 +17,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class InvoiceFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Invoice::class; - /** * Define the model's default state. * diff --git a/database/factories/InvoiceInvitationFactory.php b/database/factories/InvoiceInvitationFactory.php index 99711ecb9..e5d6edc56 100644 --- a/database/factories/InvoiceInvitationFactory.php +++ b/database/factories/InvoiceInvitationFactory.php @@ -17,13 +17,6 @@ use Illuminate\Support\Str; class InvoiceInvitationFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = InvoiceInvitation::class; - /** * Define the model's default state. * diff --git a/database/factories/PaymentFactory.php b/database/factories/PaymentFactory.php index 158575647..a0b528a9c 100644 --- a/database/factories/PaymentFactory.php +++ b/database/factories/PaymentFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; 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 9a2e25a65..ecba3066c 100644 --- a/database/factories/ProductFactory.php +++ b/database/factories/ProductFactory.php @@ -16,13 +16,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/ProjectFactory.php b/database/factories/ProjectFactory.php index 995e0a953..46f0276da 100644 --- a/database/factories/ProjectFactory.php +++ b/database/factories/ProjectFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class ProjectFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Project::class; - /** * Define the model's default state. * diff --git a/database/factories/PurchaseOrderInvitationFactory.php b/database/factories/PurchaseOrderInvitationFactory.php index ce7b43046..a77509973 100644 --- a/database/factories/PurchaseOrderInvitationFactory.php +++ b/database/factories/PurchaseOrderInvitationFactory.php @@ -8,13 +8,6 @@ use Illuminate\Support\Str; class PurchaseOrderInvitationFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = PurchaseOrderInvitation::class; - /** * Define the model's default state. * diff --git a/database/factories/QuoteFactory.php b/database/factories/QuoteFactory.php index d3a48ffc3..c09da9d3e 100644 --- a/database/factories/QuoteFactory.php +++ b/database/factories/QuoteFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class QuoteFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Quote::class; - /** * Define the model's default state. * diff --git a/database/factories/QuoteInvitationFactory.php b/database/factories/QuoteInvitationFactory.php index c7252d267..7fcaa1a30 100644 --- a/database/factories/QuoteInvitationFactory.php +++ b/database/factories/QuoteInvitationFactory.php @@ -17,13 +17,6 @@ use Illuminate\Support\Str; class QuoteInvitationFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = QuoteInvitation::class; - /** * Define the model's default state. * diff --git a/database/factories/RecurringExpenseFactory.php b/database/factories/RecurringExpenseFactory.php index 9eecc89c5..fb58a0f3d 100644 --- a/database/factories/RecurringExpenseFactory.php +++ b/database/factories/RecurringExpenseFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class RecurringExpenseFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = RecurringExpense::class; - /** * Define the model's default state. * diff --git a/database/factories/RecurringInvoiceFactory.php b/database/factories/RecurringInvoiceFactory.php index 9f86b5df3..e74019702 100644 --- a/database/factories/RecurringInvoiceFactory.php +++ b/database/factories/RecurringInvoiceFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class RecurringInvoiceFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = RecurringInvoice::class; - /** * Define the model's default state. * diff --git a/database/factories/RecurringQuoteFactory.php b/database/factories/RecurringQuoteFactory.php index e2285e4d1..42351f327 100644 --- a/database/factories/RecurringQuoteFactory.php +++ b/database/factories/RecurringQuoteFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class RecurringQuoteFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = RecurringQuote::class; - /** * Define the model's default state. * diff --git a/database/factories/SubscriptionFactory.php b/database/factories/SubscriptionFactory.php index 3659dc319..f8bbf991d 100644 --- a/database/factories/SubscriptionFactory.php +++ b/database/factories/SubscriptionFactory.php @@ -18,13 +18,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class SubscriptionFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Subscription::class; - /** * Define the model's default state. * diff --git a/database/factories/TaskFactory.php b/database/factories/TaskFactory.php index 225fd78bd..b252652d0 100644 --- a/database/factories/TaskFactory.php +++ b/database/factories/TaskFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class TaskFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Task::class; - /** * Define the model's default state. * diff --git a/database/factories/TaskStatusFactory.php b/database/factories/TaskStatusFactory.php index e6dcd93d5..0ac62f60b 100644 --- a/database/factories/TaskStatusFactory.php +++ b/database/factories/TaskStatusFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class TaskStatusFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = TaskStatus::class; - /** * Define the model's default state. * diff --git a/database/factories/TaxRateFactory.php b/database/factories/TaxRateFactory.php index 98bfec336..ef1be4c3a 100644 --- a/database/factories/TaxRateFactory.php +++ b/database/factories/TaxRateFactory.php @@ -17,13 +17,6 @@ use Illuminate\Support\Str; class TaxRateFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = TaxRate::class; - /** * Define the model's default state. * diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index 30f0d04c5..8e8edc2f2 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\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. * diff --git a/database/factories/VendorContactFactory.php b/database/factories/VendorContactFactory.php index 77fb38c21..f0bede153 100644 --- a/database/factories/VendorContactFactory.php +++ b/database/factories/VendorContactFactory.php @@ -16,13 +16,6 @@ use Illuminate\Database\Eloquent\Factories\Factory; class VendorContactFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = VendorContact::class; - /** * Define the model's default state. * diff --git a/database/factories/VendorFactory.php b/database/factories/VendorFactory.php index b954cd123..7fd4b0668 100644 --- a/database/factories/VendorFactory.php +++ b/database/factories/VendorFactory.php @@ -17,13 +17,6 @@ use Illuminate\Support\Str; class VendorFactory extends Factory { - /** - * The name of the factory's corresponding model. - * - * @var string - */ - protected $model = Vendor::class; - /** * Define the model's default state. *