Completed
Push — master ( a938d7...a6e8a0 )
by Jacob
27s
created

TestTask::run()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace As3\Bundle\PostProcessBundle\Tests;
4
5
use As3\Bundle\PostProcessBundle\Task\TaskInterface;
6
7
class TestTask implements TaskInterface
8
{
9
    private $key;
10
11
    public function __construct($key)
12
    {
13
        $this->key = $key;
14
    }
15
16
    public function getKey()
17
    {
18
        return $this->key;
19
    }
20
21
    public function run()
22
    {
23
    }
24
}
25