File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 44
55use Spargon \AuthLogger \Commands \AuthLoggerCommand ;
66use Spargon \AuthLogger \Providers \EventServiceProvider ;
7+ use Spatie \LaravelPackageTools \Commands \InstallCommand ;
78use Spatie \LaravelPackageTools \Package ;
89use Spatie \LaravelPackageTools \PackageServiceProvider ;
9- use Spatie \LaravelPackageTools \Commands \InstallCommand ;
1010
1111class AuthLoggerServiceProvider extends PackageServiceProvider
1212{
@@ -19,16 +19,16 @@ public function configurePackage(Package $package): void
1919 ->hasTranslations ()
2020 ->hasMigration ('create_auth_logs_table ' )
2121 ->hasCommand (AuthLoggerCommand::class)
22- ->hasInstallCommand (function (InstallCommand $ command ) {
22+ ->hasInstallCommand (function (InstallCommand $ command ) {
2323 $ command
24- ->startWith (function (InstallCommand $ command ) {
24+ ->startWith (function (InstallCommand $ command ) {
2525 $ command ->info ('Setting up the Laravel Auth Logger package by Spargon! ' );
2626 })
2727 ->publishConfigFile ()
2828 ->publishMigrations ()
2929 ->askToRunMigrations ()
3030 ->askToStarRepoOnGitHub ('spargon/laravel-auth-logger ' )
31- ->endWith (function (InstallCommand $ command ) {
31+ ->endWith (function (InstallCommand $ command ) {
3232 $ command ->info ('Have a great day fellow tinkerers! ' );
3333 });
3434 });
You can’t perform that action at this time.
0 commit comments