Stream::getContentType()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 0
cts 3
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 2
1
<?php
2
namespace Redbox\Twitch\Transport\Adapter;
3
use Redbox\Twitch;
4
5
class Stream implements AdapterInterface
6
{
7
    public function verifySupport()
8
    {
9
        // TODO: Implement verifySupport() method.
10
    }
11
12
    public function open()
13
    {
14
        // TODO: Implement connect() method.
15
    }
16
17
    public function close()
18
    {
19
        // TODO: Implement disconnect() method.
20
    }
21
22
    public function send($address, $method, $headers = null, $body = null)
23
    {
24
        // TODO: Implement send() method.
25
    }
26
27
    public function getHttpStatusCode()
28
    {
29
        // TODO: Implement getHttpStatusCode() method.
30
    }
31
32
    public function getContentType()
33
    {
34
        // TODO: Implement getContentType() method.
35
    }
36
37
}