Skip to content

Commit

Permalink
Remove final key word on class name (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
mckenziearts committed Feb 27, 2024
1 parent 81e839f commit 545998b
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion src/Events/Orders/AddNote.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Queue\SerializesModels;
use Shopper\Core\Models\Order;

final class AddNote
class AddNote
{
use SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Events/Orders/Cancel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Queue\SerializesModels;
use Shopper\Core\Models\Order;

final class Cancel
class Cancel
{
use SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Events/Orders/Completed.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Queue\SerializesModels;
use Shopper\Core\Models\Order;

final class Completed
class Completed
{
use SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Events/Orders/Create.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Queue\SerializesModels;
use Shopper\Core\Models\Order;

final class Create
class Create
{
use SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Events/Orders/Delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Queue\SerializesModels;
use Shopper\Core\Models\Order;

final class Delete
class Delete
{
use SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Events/Orders/Paid.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Queue\SerializesModels;
use Shopper\Core\Models\Order;

final class Paid
class Paid
{
use SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Events/Orders/Registered.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Queue\SerializesModels;
use Shopper\Core\Models\Order;

final class Registered
class Registered
{
use SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Events/Products/Created.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Illuminate\Queue\SerializesModels;

final class Created
class Created
{
use SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Events/Products/Deleted.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Illuminate\Queue\SerializesModels;

final class Deleted
class Deleted
{
use SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Events/Products/Updated.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Illuminate\Queue\SerializesModels;

final class Updated
class Updated
{
use SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Helpers/Price.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Shopper\Core\Traits\HasPrice;

final class Price
class Price
{
use HasPrice;

Expand Down
2 changes: 1 addition & 1 deletion src/Repositories/ChannelRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Shopper\Core\Repositories;

final class ChannelRepository extends BaseRepository
class ChannelRepository extends BaseRepository
{
public function model(): string
{
Expand Down
2 changes: 1 addition & 1 deletion src/Repositories/Store/BrandRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Shopper\Core\Repositories\BaseRepository;

final class BrandRepository extends BaseRepository
class BrandRepository extends BaseRepository
{
public function model(): string
{
Expand Down
2 changes: 1 addition & 1 deletion src/Repositories/Store/CategoryRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Shopper\Core\Repositories\BaseRepository;

final class CategoryRepository extends BaseRepository
class CategoryRepository extends BaseRepository
{
public function model(): string
{
Expand Down
2 changes: 1 addition & 1 deletion src/Repositories/Store/CollectionRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Shopper\Core\Repositories\BaseRepository;

final class CollectionRepository extends BaseRepository
class CollectionRepository extends BaseRepository
{
public function model(): string
{
Expand Down
2 changes: 1 addition & 1 deletion src/Repositories/Store/ProductRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Shopper\Core\Repositories\BaseRepository;

final class ProductRepository extends BaseRepository
class ProductRepository extends BaseRepository
{
public function model(): string
{
Expand Down
2 changes: 1 addition & 1 deletion src/Repositories/UserRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Shopper\Core\Models\User;

final class UserRepository extends BaseRepository
class UserRepository extends BaseRepository
{
public function model(): string
{
Expand Down
2 changes: 1 addition & 1 deletion src/Rules/Phone.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Illuminate\Contracts\Validation\Rule;

final class Phone implements Rule
class Phone implements Rule
{
public function passes($attribute, $value): bool
{
Expand Down
2 changes: 1 addition & 1 deletion src/Rules/RealEmailValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Illuminate\Contracts\Validation\Rule;

final class RealEmailValidator implements Rule
class RealEmailValidator implements Rule
{
/**
* Determine if the validation rule passes.
Expand Down

0 comments on commit 545998b

Please sign in to comment.