Completed
Push — master ( 922e8a...cfbc00 )
by Akihito
02:15
created

MinifiedTask::getCallable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
namespace Ackintosh\Snidel\Task;
3
4
use Ackintosh\Snidel\Task\TaskInterface;
5
6
class MinifiedTask implements TaskInterface
7
{
8
    /** @var string */
9
    private $tag;
10
11
    /**
12
     * @param   string  $tag
13
     */
14
    public function __construct($tag)
15
    {
16
        $this->tag = $tag;
17
    }
18
19
    /**
20
     * @return  null
21
     */
22
    public function getCallable()
23
    {
24
        return;
25
    }
26
27
    /**
28
     * @return  null
29
     */
30
    public function getArgs()
31
    {
32
        return;
33
    }
34
35
    /**
36
     * @return  string
37
     */
38
    public function getTag()
39
    {
40
        return $this->tag;
41
    }
42
}
43