Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-to authored and github-actions[bot] committed Sep 20, 2023
1 parent 64bd164 commit 4982d70
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Menu/MenuItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected function resolveMenuFiller(MenuFiller $filler): void
->get();

if (method_exists($filler, 'getBadge')) {
$badge = fn() => $filler->getBadge();
$badge = fn () => $filler->getBadge();
$this->badge($badge);
}

Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/TestServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ public function boot()
{
$this->loadMigrationsFrom(realpath('./tests/Fixtures/Migrations'));
}
}
}
2 changes: 0 additions & 2 deletions tests/Pest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?php

use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Http\Request;
use MoonShine\Fields\Field;
use MoonShine\Fields\Fields;
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ protected function getPackageProviders($app): array
{
return [
MoonShineServiceProvider::class,
TestServiceProvider::class
TestServiceProvider::class,
];
}
}

0 comments on commit 4982d70

Please sign in to comment.