Stream   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 2
Metric Value
wmc 6
c 2
b 0
f 2
lcom 0
cbo 0
dl 0
loc 33
ccs 0
cts 18
cp 0
rs 10

6 Methods

Rating   Name   Duplication   Size   Complexity  
A verifySupport() 0 4 1
A open() 0 4 1
A close() 0 4 1
A send() 0 4 1
A getHttpStatusCode() 0 4 1
A getContentType() 0 4 1
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
}