Skip to content

Commit

Permalink
Fixed use statement for LabeledEnum interface
Browse files Browse the repository at this point in the history
  • Loading branch information
juniwalk authored May 7, 2024
1 parent 74b7f34 commit ee6f4ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Enums/Action.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace JuniWalk\Nestor\Enums;

use JuniWalk\Utils\Enums\Color;
use JuniWalk\Utils\Enums\LabeledEnum;
use JuniWalk\Utils\Enums\Interfaces\LabeledEnum;
use JuniWalk\Utils\Enums\Traits\Labeled;

enum Action: string implements LabeledEnum
Expand Down
2 changes: 1 addition & 1 deletion src/Enums/Type.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace JuniWalk\Nestor\Enums;

use JuniWalk\Utils\Enums\Color;
use JuniWalk\Utils\Enums\LabeledEnum;
use JuniWalk\Utils\Enums\Interfaces\LabeledEnum;
use JuniWalk\Utils\Enums\Traits\Labeled;

enum Type: string implements LabeledEnum
Expand Down

0 comments on commit ee6f4ae

Please sign in to comment.