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 4
4
5
5
use Spargon \AuthLogger \Commands \AuthLoggerCommand ;
6
6
use Spargon \AuthLogger \Providers \EventServiceProvider ;
7
+ use Spatie \LaravelPackageTools \Commands \InstallCommand ;
7
8
use Spatie \LaravelPackageTools \Package ;
8
9
use Spatie \LaravelPackageTools \PackageServiceProvider ;
9
- use Spatie \LaravelPackageTools \Commands \InstallCommand ;
10
10
11
11
class AuthLoggerServiceProvider extends PackageServiceProvider
12
12
{
@@ -19,16 +19,16 @@ public function configurePackage(Package $package): void
19
19
->hasTranslations ()
20
20
->hasMigration ('create_auth_logs_table ' )
21
21
->hasCommand (AuthLoggerCommand::class)
22
- ->hasInstallCommand (function (InstallCommand $ command ) {
22
+ ->hasInstallCommand (function (InstallCommand $ command ) {
23
23
$ command
24
- ->startWith (function (InstallCommand $ command ) {
24
+ ->startWith (function (InstallCommand $ command ) {
25
25
$ command ->info ('Setting up the Laravel Auth Logger package by Spargon! ' );
26
26
})
27
27
->publishConfigFile ()
28
28
->publishMigrations ()
29
29
->askToRunMigrations ()
30
30
->askToStarRepoOnGitHub ('spargon/laravel-auth-logger ' )
31
- ->endWith (function (InstallCommand $ command ) {
31
+ ->endWith (function (InstallCommand $ command ) {
32
32
$ command ->info ('Have a great day fellow tinkerers! ' );
33
33
});
34
34
});
You can’t perform that action at this time.
0 commit comments