Skip to content

Commit

Permalink
fix php cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Gummibeer committed Aug 5, 2019
1 parent a4f7a67 commit 22626f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Rules/Enum.php
Expand Up @@ -58,7 +58,7 @@ public function message(): string

protected function getDisplayableOtherValues(): array
{
return array_map(function($value): string {
return array_map(function ($value): string {
return $this->getTranslation($value) ?? $value;
}, $this->getOtherValues());
}
Expand Down
4 changes: 2 additions & 2 deletions tests/Rules/EnumTest.php
Expand Up @@ -2,11 +2,11 @@

namespace Spatie\Enum\Laravel\Tests\Rules;

use Illuminate\Support\Facades\Lang;
use InvalidArgumentException;
use Spatie\Enum\Laravel\Rules\Enum;
use Spatie\Enum\Laravel\Tests\Extra\Post;
use Illuminate\Support\Facades\Lang;
use Spatie\Enum\Laravel\Tests\TestCase;
use Spatie\Enum\Laravel\Tests\Extra\Post;
use Spatie\Enum\Laravel\Tests\Extra\StatusEnum;

final class EnumTest extends TestCase
Expand Down

0 comments on commit 22626f3

Please sign in to comment.