Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class GameserverTasks extends Task |
||
15 | { |
||
16 | private $server; |
||
17 | |||
18 | /** |
||
19 | * GameserverTasks constructor. |
||
20 | * @param Server $server |
||
21 | */ |
||
22 | public function __construct(Server $server) |
||
23 | { |
||
24 | $this->server = $server; |
||
25 | } |
||
26 | |||
27 | public function configure() |
||
29 | |||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @throws \Exception |
||
34 | */ |
||
35 | public function run() |
||
39 | } |
||
40 | } |