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

GameserverTasks   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 10
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A configure() 0 2 1
A run() 0 2 1
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
}