Total Complexity | 6 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace Eclipxe\SoftDaemon\Examples; |
||
6 | |||
7 | use Eclipxe\SoftDaemon\Executable; |
||
8 | |||
9 | class ExampleExecutable implements Executable |
||
10 | { |
||
11 | protected $counter = 0; |
||
12 | |||
13 | protected $returns; |
||
14 | |||
15 | public function __construct(array $returns) |
||
18 | } |
||
19 | |||
20 | public function signalHandler(int $signo): void |
||
25 | } |
||
26 | } |
||
27 | |||
36 |