Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Remove key words on Factory #305

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading