Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 3 |
UpdateParentProcessAsync | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 3 |
pass | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 3 |
1 | <?php |
2 | |
3 | namespace Qmp\Laravel\CommandsLaravel\Middleware\Library\Monitoring; |
4 | |
5 | class UpdateParentProcessAsync extends UpdateParentProcess |
6 | { |
7 | |
8 | /** |
9 | * Undocumented variable |
10 | * |
11 | * @var boolean |
12 | */ |
13 | protected $async = true; |
14 | |
15 | /** |
16 | * Undocumented function |
17 | * |
18 | * @return bool |
19 | */ |
20 | protected function pass(): bool |
21 | { |
22 | if(isset($this->data->forcedPass)) { |
23 | return true; |
24 | } |
25 | return false; |
26 | } |
27 | } |