From 8942ad37142298a6eaf7fed747dd9c90402b0ba5 Mon Sep 17 00:00:00 2001 From: pxlrbt Date: Fri, 22 Sep 2023 04:12:47 +0000 Subject: [PATCH] Apply style changes --- src/EnvironmentIndicatorPlugin.php | 10 ++++++---- src/FilamentEnvironmentIndicatorServiceProvider.php | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/EnvironmentIndicatorPlugin.php b/src/EnvironmentIndicatorPlugin.php index 6b77dea..e005d02 100644 --- a/src/EnvironmentIndicatorPlugin.php +++ b/src/EnvironmentIndicatorPlugin.php @@ -14,11 +14,13 @@ class EnvironmentIndicatorPlugin implements Plugin { use EvaluatesClosures; - public bool | Closure | null $visible = null; - public bool | Closure | null $showBadge = null; - public bool | Closure | null $showBorder = null; + public bool|Closure|null $visible = null; - public array | Closure | null $color = null; + public bool|Closure|null $showBadge = null; + + public bool|Closure|null $showBorder = null; + + public array|Closure|null $color = null; public static function make(): static { diff --git a/src/FilamentEnvironmentIndicatorServiceProvider.php b/src/FilamentEnvironmentIndicatorServiceProvider.php index 0f0eb02..11a7a5c 100644 --- a/src/FilamentEnvironmentIndicatorServiceProvider.php +++ b/src/FilamentEnvironmentIndicatorServiceProvider.php @@ -2,8 +2,8 @@ namespace pxlrbt\FilamentEnvironmentIndicator; -use Spatie\LaravelPackageTools\PackageServiceProvider; use Spatie\LaravelPackageTools\Package; +use Spatie\LaravelPackageTools\PackageServiceProvider; class FilamentEnvironmentIndicatorServiceProvider extends PackageServiceProvider {