Consistently use the class notation

This commit is contained in:
James Brooks
2017-01-04 19:50:17 +00:00
parent ceb5408387
commit ad9b6a9d7e
2 changed files with 78 additions and 79 deletions
+3 -3
View File
@@ -22,11 +22,11 @@ $app = new Illuminate\Foundation\Application(realpath(__DIR__.'/../'));
| |
*/ */
$app->singleton('Illuminate\Contracts\Http\Kernel', 'CachetHQ\Cachet\Http\Kernel'); $app->singleton(Illuminate\Contracts\Http\Kernel::class, CachetHQ\Cachet\Http\Kernel::class);
$app->singleton('Illuminate\Contracts\Console\Kernel', 'CachetHQ\Cachet\Console\Kernel'); $app->singleton(Illuminate\Contracts\Console\Kernel::class, CachetHQ\Cachet\Console\Kernel::class);
$app->singleton('Illuminate\Contracts\Debug\ExceptionHandler', 'GrahamCampbell\Exceptions\NewExceptionHandler'); $app->singleton(Illuminate\Contracts\Debug\ExceptionHandler::class, GrahamCampbell\Exceptions\NewExceptionHandler::class);
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
+75 -76
View File
@@ -147,59 +147,59 @@ return [
/* /*
* Laravel Framework Service Providers... * Laravel Framework Service Providers...
*/ */
'Illuminate\Auth\AuthServiceProvider', Illuminate\Auth\AuthServiceProvider::class,
'Illuminate\Broadcasting\BroadcastServiceProvider', Illuminate\Broadcasting\BroadcastServiceProvider::class,
'AltThree\Bus\BusServiceProvider', AltThree\Bus\BusServiceProvider::class,
'Illuminate\Cache\CacheServiceProvider', Illuminate\Cache\CacheServiceProvider::class,
'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider', Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
'Illuminate\Cookie\CookieServiceProvider', Illuminate\Cookie\CookieServiceProvider::class,
'Illuminate\Database\DatabaseServiceProvider', Illuminate\Database\DatabaseServiceProvider::class,
'Illuminate\Encryption\EncryptionServiceProvider', Illuminate\Encryption\EncryptionServiceProvider::class,
'Illuminate\Filesystem\FilesystemServiceProvider', Illuminate\Filesystem\FilesystemServiceProvider::class,
'Illuminate\Foundation\Providers\FoundationServiceProvider', Illuminate\Foundation\Providers\FoundationServiceProvider::class,
'Illuminate\Hashing\HashServiceProvider', Illuminate\Hashing\HashServiceProvider::class,
'Illuminate\Mail\MailServiceProvider', Illuminate\Mail\MailServiceProvider::class,
Illuminate\Notifications\NotificationServiceProvider::class, Illuminate\Notifications\NotificationServiceProvider::class,
'Illuminate\Pagination\PaginationServiceProvider', Illuminate\Pagination\PaginationServiceProvider::class,
'Illuminate\Pipeline\PipelineServiceProvider', Illuminate\Pipeline\PipelineServiceProvider::class,
'Illuminate\Queue\QueueServiceProvider', Illuminate\Queue\QueueServiceProvider::class,
'Illuminate\Redis\RedisServiceProvider', Illuminate\Redis\RedisServiceProvider::class,
'Illuminate\Auth\Passwords\PasswordResetServiceProvider', Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
'Illuminate\Session\SessionServiceProvider', Illuminate\Session\SessionServiceProvider::class,
'Illuminate\Translation\TranslationServiceProvider', Illuminate\Translation\TranslationServiceProvider::class,
'Illuminate\Validation\ValidationServiceProvider', Illuminate\Validation\ValidationServiceProvider::class,
'Illuminate\View\ViewServiceProvider', Illuminate\View\ViewServiceProvider::class,
/* /*
* Packages Service Providers... * Packages Service Providers...
*/ */
'AltThree\Badger\BadgerServiceProvider', AltThree\Badger\BadgerServiceProvider::class,
'AltThree\Emoji\EmojiServiceProvider', AltThree\Emoji\EmojiServiceProvider::class,
'BackupManager\Laravel\Laravel5ServiceProvider', BackupManager\Laravel\Laravel5ServiceProvider::class,
'Barryvdh\Cors\ServiceProvider', Barryvdh\Cors\ServiceProvider::class,
'Fedeisas\LaravelMailCssInliner\LaravelMailCssInlinerServiceProvider', Fedeisas\LaravelMailCssInliner\LaravelMailCssInlinerServiceProvider::class,
'Fideloper\Proxy\TrustedProxyServiceProvider', Fideloper\Proxy\TrustedProxyServiceProvider::class,
'GrahamCampbell\Binput\BinputServiceProvider', GrahamCampbell\Binput\BinputServiceProvider::class,
'GrahamCampbell\Exceptions\ExceptionsServiceProvider', GrahamCampbell\Exceptions\ExceptionsServiceProvider::class,
'GrahamCampbell\Core\CoreServiceProvider', GrahamCampbell\Core\CoreServiceProvider::class,
'GrahamCampbell\Markdown\MarkdownServiceProvider', GrahamCampbell\Markdown\MarkdownServiceProvider::class,
'GrahamCampbell\Security\SecurityServiceProvider', GrahamCampbell\Security\SecurityServiceProvider::class,
'McCool\LaravelAutoPresenter\AutoPresenterServiceProvider', McCool\LaravelAutoPresenter\AutoPresenterServiceProvider::class,
'PragmaRX\Google2FA\Vendor\Laravel\ServiceProvider', PragmaRX\Google2FA\Vendor\Laravel\ServiceProvider::class,
'Roumen\Feed\FeedServiceProvider', Roumen\Feed\FeedServiceProvider::class,
/* /*
* Application Service Providers... * Application Service Providers...
*/ */
'CachetHQ\Cachet\Foundation\Providers\AppServiceProvider', CachetHQ\Cachet\Foundation\Providers\AppServiceProvider::class,
'CachetHQ\Cachet\Foundation\Providers\ComposerServiceProvider', CachetHQ\Cachet\Foundation\Providers\ComposerServiceProvider::class,
'CachetHQ\Cachet\Foundation\Providers\ConsoleServiceProvider', CachetHQ\Cachet\Foundation\Providers\ConsoleServiceProvider::class,
'CachetHQ\Cachet\Foundation\Providers\ConfigServiceProvider', CachetHQ\Cachet\Foundation\Providers\ConfigServiceProvider::class,
'CachetHQ\Cachet\Foundation\Providers\EventServiceProvider', CachetHQ\Cachet\Foundation\Providers\EventServiceProvider::class,
'CachetHQ\Cachet\Foundation\Providers\IntegrationServiceProvider', CachetHQ\Cachet\Foundation\Providers\IntegrationServiceProvider::class,
'CachetHQ\Cachet\Foundation\Providers\ModuleServiceProvider', CachetHQ\Cachet\Foundation\Providers\ModuleServiceProvider::class,
'CachetHQ\Cachet\Foundation\Providers\RepositoryServiceProvider', CachetHQ\Cachet\Foundation\Providers\RepositoryServiceProvider::class,
'CachetHQ\Cachet\Foundation\Providers\RouteServiceProvider', CachetHQ\Cachet\Foundation\Providers\RouteServiceProvider::class,
]), ]),
@@ -216,39 +216,38 @@ return [
'aliases' => [ 'aliases' => [
'App' => 'Illuminate\Support\Facades\App', 'App' => Illuminate\Support\Facades\App::class,
'Artisan' => 'Illuminate\Support\Facades\Artisan', 'Artisan' => Illuminate\Support\Facades\Artisan::class,
'Auth' => 'Illuminate\Support\Facades\Auth', 'Auth' => Illuminate\Support\Facades\Auth::class,
'Blade' => 'Illuminate\Support\Facades\Blade', 'Blade' => Illuminate\Support\Facades\Blade::class,
'Cache' => 'Illuminate\Support\Facades\Cache', 'Cache' => Illuminate\Support\Facades\Cache::class,
'Config' => 'Illuminate\Support\Facades\Config', 'Config' => Illuminate\Support\Facades\Config::class,
'Cookie' => 'Illuminate\Support\Facades\Cookie', 'Cookie' => Illuminate\Support\Facades\Cookie::class,
'Crypt' => 'Illuminate\Support\Facades\Crypt', 'Crypt' => Illuminate\Support\Facades\Crypt::class,
'DB' => 'Illuminate\Support\Facades\DB', 'DB' => Illuminate\Support\Facades\DB::class,
'Event' => 'Illuminate\Support\Facades\Event', 'Event' => Illuminate\Support\Facades\Event::class,
'File' => 'Illuminate\Support\Facades\File', 'File' => Illuminate\Support\Facades\File::class,
'Gate' => 'Illuminate\Support\Facades\Gate', 'Gate' => Illuminate\Support\Facades\Gate::class,
'Hash' => 'Illuminate\Support\Facades\Hash', 'Hash' => Illuminate\Support\Facades\Hash::class,
'Lang' => 'Illuminate\Support\Facades\Lang', 'Lang' => Illuminate\Support\Facades\Lang::class,
'Log' => 'Illuminate\Support\Facades\Log', 'Log' => Illuminate\Support\Facades\Log::class,
'Mail' => 'Illuminate\Support\Facades\Mail', 'Mail' => Illuminate\Support\Facades\Mail::class,
'Notification' => Illuminate\Support\Facades\Notification::class, 'Notification' => Illuminate\Support\Facades\Notification::class,
'Password' => 'Illuminate\Support\Facades\Password', 'Password' => Illuminate\Support\Facades\Password::class,
'Queue' => 'Illuminate\Support\Facades\Queue', 'Queue' => Illuminate\Support\Facades\Queue::class,
'Redirect' => 'Illuminate\Support\Facades\Redirect', 'Redirect' => Illuminate\Support\Facades\Redirect::class,
'Redis' => 'Illuminate\Support\Facades\Redis', 'Redis' => Illuminate\Support\Facades\Redis::class,
'Request' => 'Illuminate\Support\Facades\Request', 'Request' => Illuminate\Support\Facades\Request::class,
'Response' => 'Illuminate\Support\Facades\Response', 'Response' => Illuminate\Support\Facades\Response::class,
'Route' => 'Illuminate\Support\Facades\Route', 'Route' => Illuminate\Support\Facades\Route::class,
'Schema' => 'Illuminate\Support\Facades\Schema', 'Schema' => Illuminate\Support\Facades\Schema::class,
'Session' => 'Illuminate\Support\Facades\Session', 'Session' => Illuminate\Support\Facades\Session::class,
'Storage' => 'Illuminate\Support\Facades\Storage', 'Storage' => Illuminate\Support\Facades\Storage::class,
'URL' => 'Illuminate\Support\Facades\URL', 'URL' => Illuminate\Support\Facades\URL::class,
'Validator' => 'Illuminate\Support\Facades\Validator', 'Validator' => Illuminate\Support\Facades\Validator::class,
'View' => 'Illuminate\Support\Facades\View', 'View' => Illuminate\Support\Facades\View::class,
'Binput' => GrahamCampbell\Binput\Facades\Binput::class,
'Binput' => 'GrahamCampbell\Binput\Facades\Binput', 'Str' => Illuminate\Support\Str::class,
'Str' => 'Illuminate\Support\Str',
], ],