15 lines
256 B
PHP
15 lines
256 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Console\Commands;
|
||
|
|
|
||
|
|
use Illuminate\Queue\Console\RetryCommand as BaseRetryCommand;
|
||
|
|
|
||
|
|
class RetryCommand extends BaseRetryCommand
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This contains the necessary code to add parameters.
|
||
|
|
*/
|
||
|
|
use AddParametersTrait;
|
||
|
|
}
|