Passed
Push — master ( cd8579...2f5dcf )
by Wim
01:20
created

GameserverTasks::run()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
3
4
namespace Thunderbug\Tracker\Tasks;
5
6
use Spatie\Async\Task;
7
8
class GameserverTasks extends Task
9
{
10
11
    public function configure()
12
    {
13
        // TODO: Implement configure() method.
14
    }
15
16
    public function run()
17
    {
18
        // TODO: Implement run() method.
19
    }
20
}