Skip to content

Commit

Permalink
Do not mark classes as final
Browse files Browse the repository at this point in the history
  • Loading branch information
alies-dev committed Dec 15, 2024
1 parent 196fdcb commit a5e2754
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/CardServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
use Illuminate\Support\ServiceProvider;
use Laravel\Nova\Nova;

final class CardServiceProvider extends ServiceProvider
/** @phpcsSuppress SlevomatCodingStandard.Classes.RequireAbstractOrFinal.ClassNeitherAbstractNorFinal */
class CardServiceProvider extends ServiceProvider
{
/** Bootstrap any application services. */
public function boot(): void
Expand Down
3 changes: 2 additions & 1 deletion src/WorldClock.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

use Laravel\Nova\Card;

final class WorldClock extends Card
/** @phpcsSuppress SlevomatCodingStandard.Classes.RequireAbstractOrFinal.ClassNeitherAbstractNorFinal */
class WorldClock extends Card
{
/**
* The width of the card (1/3, 1/2, or full).
Expand Down

0 comments on commit a5e2754

Please sign in to comment.