Task   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
namespace Samurai\Task;
3
4
use Pimple\Container;
5
use Samurai\Service\ServiceWorker;
6
7
/**
8
 * Class Task
9
 * @package Samurai\Task
10
 * @author Raphaël Lefebvre <[email protected]>
11
 */
12
abstract class Task implements ITask
13
{
14
    use ServiceWorker;
15
16
    /**
17
     * @param Container $services
18
     */
19 75
    public function __construct(Container $services)
20
    {
21 75
        $this->setServices($services);
22 75
    }
23
}
24