Skip to content

Commit

Permalink
feat: Remove key words on Factory
Browse files Browse the repository at this point in the history
  • Loading branch information
mckenziearts committed Nov 6, 2024
1 parent d36dea3 commit 01698e3
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/core/database/factories/AddressFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @extends Factory<Address>
*/
final class AddressFactory extends Factory
class AddressFactory extends Factory
{
protected $model = Address::class;

Expand Down
2 changes: 1 addition & 1 deletion packages/core/database/factories/BrandFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @extends Factory<Brand>
*/
final class BrandFactory extends Factory
class BrandFactory extends Factory
{
protected $model = Brand::class;

Expand Down
2 changes: 1 addition & 1 deletion packages/core/database/factories/CarrierOptionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* @extends Factory<CarrierOption>
*/
final class CarrierOptionFactory extends Factory
class CarrierOptionFactory extends Factory
{
protected $model = CarrierOption::class;

Expand Down
2 changes: 1 addition & 1 deletion packages/core/database/factories/CategoryFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @extends Factory<Category>
*/
final class CategoryFactory extends Factory
class CategoryFactory extends Factory
{
protected $model = Category::class;

Expand Down
2 changes: 1 addition & 1 deletion packages/core/database/factories/CollectionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @extends Factory<Collection>
*/
final class CollectionFactory extends Factory
class CollectionFactory extends Factory
{
protected $model = Collection::class;

Expand Down
2 changes: 1 addition & 1 deletion packages/core/database/factories/CollectionRuleFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* @extends Factory<CollectionRule>
*/
final class CollectionRuleFactory extends Factory
class CollectionRuleFactory extends Factory
{
protected $model = CollectionRule::class;

Expand Down
2 changes: 1 addition & 1 deletion packages/core/database/factories/OrderFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @extends Factory<Order>
*/
final class OrderFactory extends Factory
class OrderFactory extends Factory
{
protected $model = Order::class;

Expand Down
2 changes: 1 addition & 1 deletion packages/core/database/factories/OrderItemFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* @extends Factory<OrderItem>
*/
final class OrderItemFactory extends Factory
class OrderItemFactory extends Factory
{
protected $model = OrderItem::class;

Expand Down
2 changes: 1 addition & 1 deletion packages/core/database/factories/ProductFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @extends Factory<Product>
*/
final class ProductFactory extends Factory
class ProductFactory extends Factory
{
protected $model = Product::class;

Expand Down
2 changes: 1 addition & 1 deletion packages/core/database/factories/UserFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* @extends Factory<User>
*/
final class UserFactory extends Factory
class UserFactory extends Factory
{
protected static ?string $password;

Expand Down

0 comments on commit 01698e3

Please sign in to comment.