Skip to content

Commit

Permalink
Merge pull request #19 from Spargon/analysis-22xGLZ
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
TechTailor authored Sep 8, 2022
2 parents c60bc84 + dd8396a commit ac00dab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/AuthLoggerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand All @@ -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!');
});
});
Expand Down

0 comments on commit ac00dab

Please sign in to comment.