From dd8396ace8c906cf5ddd25aa5f07e09a4dca459f Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Thu, 8 Sep 2022 03:40:33 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/AuthLoggerServiceProvider.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/AuthLoggerServiceProvider.php b/src/AuthLoggerServiceProvider.php index c04af1c..09f075a 100644 --- a/src/AuthLoggerServiceProvider.php +++ b/src/AuthLoggerServiceProvider.php @@ -4,9 +4,9 @@ use Spargon\AuthLogger\Commands\AuthLoggerCommand; use Spargon\AuthLogger\Providers\EventServiceProvider; +use Spatie\LaravelPackageTools\Commands\InstallCommand; use Spatie\LaravelPackageTools\Package; use Spatie\LaravelPackageTools\PackageServiceProvider; -use Spatie\LaravelPackageTools\Commands\InstallCommand; class AuthLoggerServiceProvider extends PackageServiceProvider { @@ -19,16 +19,16 @@ public function configurePackage(Package $package): void ->hasTranslations() ->hasMigration('create_auth_logs_table') ->hasCommand(AuthLoggerCommand::class) - ->hasInstallCommand(function(InstallCommand $command) { + ->hasInstallCommand(function (InstallCommand $command) { $command - ->startWith(function(InstallCommand $command) { + ->startWith(function (InstallCommand $command) { $command->info('Setting up the Laravel Auth Logger package by Spargon!'); }) ->publishConfigFile() ->publishMigrations() ->askToRunMigrations() ->askToStarRepoOnGitHub('spargon/laravel-auth-logger') - ->endWith(function(InstallCommand $command) { + ->endWith(function (InstallCommand $command) { $command->info('Have a great day fellow tinkerers!'); }); });