Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Nov 28, 2020
1 parent 9157b5f commit 5dde3ef
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion tests/DetectsEnumVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ trait DetectsEnumVersion
{
private function getEnumVersion(): string
{
return defined(Enum::class. '::__DEFAULT') ? '3.0.0' : '2.3.0';
return defined(Enum::class . '::__DEFAULT') ? '3.0.0' : '2.3.0';
}

private function getEnumVersionMajor(): int
Expand Down
1 change: 0 additions & 1 deletion tests/EnumToArrayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
use Konekt\Enum\Eloquent\Tests\Models\OrderStatusV2;
use Konekt\Enum\Eloquent\Tests\Models\OrderV2;
use Konekt\Enum\Eloquent\Tests\Models\OrderStatus;
use Konekt\Enum\Enum;

class EnumToArrayTest extends TestCase
{
Expand Down

0 comments on commit 5dde3ef

Please sign in to comment.