Passed
Push — master ( 35235e...b730fe )
by Malte
03:40
created

NullStyle::title()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
eloc 0
nc 1
nop 1
1
<?php
2
3
namespace Helper;
4
5
use Symfony\Component\Console\Style\StyleInterface;
6
7
/**
8
 * Null implementation for Symfony Style interface.
9
 */
10
final class NullStyle implements StyleInterface
11
{
12
    public function title($message)
13
    {
14
    }
15
16
    public function section($message)
17
    {
18
    }
19
20
    public function listing(array $elements)
21
    {
22
    }
23
24
    public function text($message)
25
    {
26
    }
27
28
    public function success($message)
29
    {
30
    }
31
32
    public function error($message)
33
    {
34
    }
35
36
    public function warning($message)
37
    {
38
    }
39
40
    public function note($message)
41
    {
42
    }
43
44
    public function caution($message)
45
    {
46
    }
47
48
    public function table(array $headers, array $rows)
49
    {
50
    }
51
52
    public function ask($question, $default = null, $validator = null)
53
    {
54
    }
55
56
    public function askHidden($question, $validator = null)
57
    {
58
    }
59
60
    public function confirm($question, $default = true)
61
    {
62
    }
63
64
    public function choice($question, array $choices, $default = null)
65
    {
66
    }
67
68
    public function newLine($count = 1)
69
    {
70
    }
71
72
    public function progressStart($max = 0)
73
    {
74
    }
75
76
    public function progressAdvance($step = 1)
77
    {
78
    }
79
80
    public function progressFinish()
81
    {
82
    }
83
}
84