PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Queue
/
Console
<?php namespace Illuminate\Queue\Console; use Illuminate\Console\Command; class FlushFailedCommand extends Command { /** * The console command name. * * @var string */ protected $name = 'queue:flush'; /** * The console command description. * * @var string */ protected $description = 'Flush all of the failed queue jobs'; /** * Execute the console command. * * @return void */ public function handle() { $this->laravel['queue.failer']->flush(); $this->info('All failed jobs deleted successfully!'); } }
[-] RestartCommand.php
[edit]
[-] BatchesTableCommand.php
[edit]
[-] RetryCommand.php
[edit]
[+]
..
[-] ListenCommand.php
[edit]
[-] ForgetFailedCommand.php
[edit]
[-] FlushFailedCommand.php
[edit]
[-] FailedTableCommand.php
[edit]
[-] TableCommand.php
[edit]
[-] PruneBatchesCommand.php
[edit]
[-] RetryBatchCommand.php
[edit]
[-] WorkCommand.php
[edit]
[-] ClearCommand.php
[edit]
[-] PruneFailedJobsCommand.php
[edit]
[+]
stubs
[-] ListFailedCommand.php
[edit]
[-] MonitorCommand.php
[edit]