Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
9 | 6 | public function __construct(array $params = [], string $fileName = '', string $path = '/etc/supervisor/conf.d/') |
|
10 | { |
||
11 | 6 | $params = $params ?: [ |
|
12 | 6 | 'command' => 'php artisan queue:work --sleep=3 --tries=3 --daemon', |
|
13 | 'numprocs' => 3, |
||
14 | ]; |
||
15 | |||
16 | 6 | parent::__construct($params, $fileName, $path); |
|
17 | 6 | } |
|
18 | } |
||
19 |