Passed
Pull Request — master (#36)
by kenny
02:02
created

Response::getHeaderLine()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace One;
4
5
/**
6
 * Psr\ResponseInterface implementation
7
 */
8
class Response implements \Psr\Http\Message\ResponseInterface
9
{
10
11
    /**
12
     * Psr7 Response
13
     * @var \Psr\Http\Message\ResponseInterface
14
     */
15
    private $resp;
16
17
    /**
18
     * Response constructor
19
     * @param null|\Psr\Http\Message\ResponseInterface $responseInterface
20
     */
21
    public function __construct($responseInterface = null)
22
    {
23
        $this->resp = $responseInterface;
24
    }
25
26
    /**
27
     * @inheritDoc
28
     */
29
    public function getProtocolVersion()
30
    {
31
    }
32
    /**
33
     * @inheritDoc
34
     */
35
    public function withProtocolVersion($version)
36
    {
37
    }
38
    /**
39
     * @inheritDoc
40
     */
41
    public function getHeaders()
42
    {
43
    }
44
    /**
45
     * @inheritDoc
46
     */
47
    public function hasHeader($name)
48
    {
49
    }
50
    /**
51
     * @inheritDoc
52
     */
53
    public function getHeader($name)
54
    {
55
    }
56
    /**
57
     * @inheritDoc
58
     */
59
    public function getHeaderLine($name)
60
    {
61
    }
62
    /**
63
     * @inheritDoc
64
     */
65
    public function withHeader($name, $value)
66
    {
67
    }
68
    /**
69
     * @inheritDoc
70
     */
71
    public function withAddedHeader($name, $value)
72
    {
73
    }
74
    /**
75
     * @inheritDoc
76
     */
77
    public function withoutHeader($name)
78
    {
79
    }
80
    /**
81
     * @inheritDoc
82
     */
83
    public function getBody()
84
    {
85
    }
86
    /**
87
     * @inheritDoc
88
     */
89
    public function withBody(\Psr\Http\Message\StreamInterface $body)
90
    {
91
    }
92
    /**
93
     * @inheritDoc
94
     */
95
    public function getStatusCode()
96
    {
97
    }
98
99
    /**
100
     * @inheritDoc
101
     */
102
    public function withStatus($code, $reasonPhrase = '')
103
    {
104
    }
105
106
    /**
107
     * @inheritDoc
108
     */
109
    public function getReasonPhrase()
110
    {
111
    }
112
}
113