diff --git a/src/Foundation/Providers/ArtisanServiceProvider.php b/src/Foundation/Providers/ArtisanServiceProvider.php index 1fae0346..f1d737d9 100644 --- a/src/Foundation/Providers/ArtisanServiceProvider.php +++ b/src/Foundation/Providers/ArtisanServiceProvider.php @@ -12,32 +12,36 @@ class ArtisanServiceProvider extends ArtisanServiceProviderBase * @var array */ protected $commands = [ - 'CacheClear' => 'command.cache.clear', - 'CacheForget' => 'command.cache.forget', - 'ClearCompiled' => 'command.clear-compiled', - 'ConfigCache' => 'command.config.cache', - 'ConfigClear' => 'command.config.clear', - 'Down' => 'command.down', - 'Environment' => 'command.environment', - 'KeyGenerate' => 'command.key.generate', - 'Optimize' => 'command.optimize', - 'PackageDiscover' => 'command.package.discover', - 'QueueFailed' => 'command.queue.failed', - 'QueueFlush' => 'command.queue.flush', - 'QueueForget' => 'command.queue.forget', - 'QueueListen' => 'command.queue.listen', - 'QueueRestart' => 'command.queue.restart', - 'QueueRetry' => 'command.queue.retry', - 'QueueWork' => 'command.queue.work', - 'RouteCache' => 'command.route.cache', - 'RouteClear' => 'command.route.clear', - 'RouteList' => 'command.route.list', - 'ScheduleFinish' => \Illuminate\Console\Scheduling\ScheduleFinishCommand::class, - 'ScheduleRun' => \Illuminate\Console\Scheduling\ScheduleRunCommand::class, - 'Seed' => 'command.seed', - 'StorageLink' => 'command.storage.link', - 'Up' => 'command.up', - 'ViewClear' => 'command.view.clear', + 'CacheClear' => \Illuminate\Cache\Console\ClearCommand::class, + 'CacheForget' => \Illuminate\Cache\Console\ForgetCommand::class, + 'ClearCompiled' => \Winter\Storm\Foundation\Console\ClearCompiledCommand::class, + 'ConfigCache' => \Illuminate\Foundation\Console\ConfigCacheCommand::class, + 'ConfigClear' => \Illuminate\Foundation\Console\ConfigClearCommand::class, + 'Down' => \Illuminate\Foundation\Console\DownCommand::class, + 'Environment' => \Illuminate\Foundation\Console\EnvironmentCommand::class, + 'KeyGenerate' => \Winter\Storm\Foundation\Console\KeyGenerateCommand::class, + 'Optimize' => \Illuminate\Foundation\Console\OptimizeCommand::class, + 'PackageDiscover' => \Illuminate\Foundation\Console\PackageDiscoverCommand::class, + 'QueueFailed' => \Illuminate\Queue\Console\ListFailedCommand::class, + 'QueueFlush' => \Illuminate\Queue\Console\FlushFailedCommand::class, + 'QueueForget' => \Illuminate\Queue\Console\ForgetFailedCommand::class, + 'QueueListen' => \Illuminate\Queue\Console\ListenCommand::class, + 'QueueMonitor' => \Illuminate\Queue\Console\MonitorCommand::class, + 'QueuePruneBatches' => \Illuminate\Queue\Console\PruneBatchesCommand::class, + 'QueuePruneFailedJobs' => \Illuminate\Queue\Console\PruneFailedJobsCommand::class, + 'QueueRestart' => \Illuminate\Queue\Console\RestartCommand::class, + 'QueueRetry' => \Illuminate\Queue\Console\RetryCommand::class, + 'QueueRetryBatch' => \Illuminate\Queue\Console\RetryBatchCommand::class, + 'QueueWork' => \Illuminate\Queue\Console\WorkCommand::class, + 'RouteCache' => \Illuminate\Foundation\Console\RouteCacheCommand::class, + 'RouteClear' => \Illuminate\Foundation\Console\RouteClearCommand::class, + 'RouteList' => \Illuminate\Foundation\Console\RouteListCommand::class, + 'ScheduleFinish' => \Illuminate\Console\Scheduling\ScheduleFinishCommand::class, + 'ScheduleRun' => \Illuminate\Console\Scheduling\ScheduleRunCommand::class, + 'Seed' => \Illuminate\Database\Console\Seeds\SeedCommand::class, + 'StorageLink' => \Illuminate\Foundation\Console\StorageLinkCommand::class, + 'Up' => \Illuminate\Foundation\Console\UpCommand::class, + 'ViewClear' => \Illuminate\Foundation\Console\ViewClearCommand::class, ]; /** @@ -46,8 +50,8 @@ class ArtisanServiceProvider extends ArtisanServiceProviderBase * @var array */ protected $devCommands = [ - 'Serve' => 'command.serve', - 'VendorPublish' => 'command.vendor.publish', + 'Serve' => \Illuminate\Foundation\Console\ServeCommand::class, + 'VendorPublish' => \Illuminate\Foundation\Console\VendorPublishCommand::class, ]; /**