Skip to content

Commit

Permalink
remove final from Exception classes
Browse files Browse the repository at this point in the history
  • Loading branch information
musa11971 committed Dec 11, 2024
1 parent aa4ef2d commit 62174ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Exceptions/NoNextStep.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Exception;

final class NoNextStep extends Exception
class NoNextStep extends Exception
{
public static function make(
string $wizardComponentClassName,
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/NoPreviousStep.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Exception;

final class NoPreviousStep extends Exception
class NoPreviousStep extends Exception
{
public static function make(
string $wizardComponentClassName,
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/StepDoesNotExist.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Exception;

final class StepDoesNotExist extends Exception
class StepDoesNotExist extends Exception
{
public static function stepNotFound(string $nonExistingStepName): self
{
Expand Down

0 comments on commit 62174ca

Please sign in to comment.