From 3400c543a3c57a2b3c0d1e1f7b2c28bb625d5a0e Mon Sep 17 00:00:00 2001 From: Adam Pippin Date: Thu, 11 Feb 2021 23:06:45 -0800 Subject: [PATCH] spaces -> tabs --- app/Providers/AppServiceProvider.php | 36 ++++---- config/app.php | 110 +++++++++++----------- config/commands.php | 132 ++++++++++++++------------- 3 files changed, 141 insertions(+), 137 deletions(-) diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 35471f6..c5a7e4b 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -1,28 +1,28 @@ 'Cfnpp', - - /* - |-------------------------------------------------------------------------- - | Application Version - |-------------------------------------------------------------------------- - | - | This value determines the "version" your application is currently running - | in. You may want to follow the "Semantic Versioning" - Given a version - | number MAJOR.MINOR.PATCH when an update happens: https://semver.org. - | - */ - - 'version' => app('git.version'), - - /* - |-------------------------------------------------------------------------- - | Application Environment - |-------------------------------------------------------------------------- - | - | This value determines the "environment" your application is currently - | running in. This may determine how you prefer to configure various - | services the application utilizes. This can be overridden using - | the global command line "--env" option when calling commands. - | - */ - - 'env' => 'development', - - /* - |-------------------------------------------------------------------------- - | Autoloaded Service Providers - |-------------------------------------------------------------------------- - | - | The service providers listed here will be automatically loaded on the - | request to your application. Feel free to add your own services to - | this array to grant expanded functionality to your applications. - | - */ - - 'providers' => [ - App\Providers\AppServiceProvider::class, - ], + /* + |-------------------------------------------------------------------------- + | Application Name + |-------------------------------------------------------------------------- + | + | This value is the name of your application. This value is used when the + | framework needs to place the application's name in a notification or + | any other location as required by the application or its packages. + | + */ + + 'name' => 'Cfnpp', + + /* + |-------------------------------------------------------------------------- + | Application Version + |-------------------------------------------------------------------------- + | + | This value determines the "version" your application is currently running + | in. You may want to follow the "Semantic Versioning" - Given a version + | number MAJOR.MINOR.PATCH when an update happens: https://semver.org. + | + */ + + 'version' => app('git.version'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. This can be overridden using + | the global command line "--env" option when calling commands. + | + */ + + 'env' => 'development', + + /* + |-------------------------------------------------------------------------- + | Autoloaded Service Providers + |-------------------------------------------------------------------------- + | + | The service providers listed here will be automatically loaded on the + | request to your application. Feel free to add your own services to + | this array to grant expanded functionality to your applications. + | + */ + + 'providers' => [ + App\Providers\AppServiceProvider::class, + ], ]; diff --git a/config/commands.php b/config/commands.php index 838b65f..f44cee0 100644 --- a/config/commands.php +++ b/config/commands.php @@ -1,80 +1,82 @@ NunoMaduro\LaravelConsoleSummary\SummaryCommand::class, + 'default' => NunoMaduro\LaravelConsoleSummary\SummaryCommand::class, - /* - |-------------------------------------------------------------------------- - | Commands Paths - |-------------------------------------------------------------------------- - | - | This value determines the "paths" that should be loaded by the console's - | kernel. Foreach "path" present on the array provided below the kernel - | will extract all "Illuminate\Console\Command" based class commands. - | - */ + /* + |-------------------------------------------------------------------------- + | Commands Paths + |-------------------------------------------------------------------------- + | + | This value determines the "paths" that should be loaded by the console's + | kernel. Foreach "path" present on the array provided below the kernel + | will extract all "Illuminate\Console\Command" based class commands. + | + */ - 'paths' => [app_path('Commands')], + 'paths' => [app_path('Commands')], - /* - |-------------------------------------------------------------------------- - | Added Commands - |-------------------------------------------------------------------------- - | - | You may want to include a single command class without having to load an - | entire folder. Here you can specify which commands should be added to - | your list of commands. The console's kernel will try to load them. - | - */ + /* + |-------------------------------------------------------------------------- + | Added Commands + |-------------------------------------------------------------------------- + | + | You may want to include a single command class without having to load an + | entire folder. Here you can specify which commands should be added to + | your list of commands. The console's kernel will try to load them. + | + */ - 'add' => [ - // .. - ], + 'add' => [ + // .. + ], - /* - |-------------------------------------------------------------------------- - | Hidden Commands - |-------------------------------------------------------------------------- - | - | Your application commands will always be visible on the application list - | of commands. But you can still make them "hidden" specifying an array - | of commands below. All "hidden" commands can still be run/executed. - | - */ + /* + |-------------------------------------------------------------------------- + | Hidden Commands + |-------------------------------------------------------------------------- + | + | Your application commands will always be visible on the application list + | of commands. But you can still make them "hidden" specifying an array + | of commands below. All "hidden" commands can still be run/executed. + | + */ - 'hidden' => [ - NunoMaduro\LaravelConsoleSummary\SummaryCommand::class, - Symfony\Component\Console\Command\HelpCommand::class, - Illuminate\Console\Scheduling\ScheduleRunCommand::class, - Illuminate\Console\Scheduling\ScheduleFinishCommand::class, - Illuminate\Foundation\Console\VendorPublishCommand::class, - ], + 'hidden' => [ + NunoMaduro\LaravelConsoleSummary\SummaryCommand::class, + Symfony\Component\Console\Command\HelpCommand::class, + Illuminate\Console\Scheduling\ScheduleRunCommand::class, + Illuminate\Console\Scheduling\ScheduleFinishCommand::class, + Illuminate\Foundation\Console\VendorPublishCommand::class, + ], - /* - |-------------------------------------------------------------------------- - | Removed Commands - |-------------------------------------------------------------------------- - | - | Do you have a service provider that loads a list of commands that - | you don't need? No problem. Laravel Zero allows you to specify - | below a list of commands that you don't to see in your app. - | - */ + /* + |-------------------------------------------------------------------------- + | Removed Commands + |-------------------------------------------------------------------------- + | + | Do you have a service provider that loads a list of commands that + | you don't need? No problem. Laravel Zero allows you to specify + | below a list of commands that you don't to see in your app. + | + */ - 'remove' => [ - // .. - ], + 'remove' => [ + // .. + ], ];