Completed
Push — master ( 2a1eef...f81184 )
by Dmitry
02:53
created

Response   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
lcom 0
cbo 1
dl 0
loc 22
ccs 0
cts 12
cp 0
rs 10
c 1
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getRawData() 0 4 1
A getHeader() 0 4 1
A getStatusCode() 0 4 1
A getReasonPhrase() 0 4 1
1
<?php
2
/**
3
 * Tools to use API as ActiveRecord for Yii2
4
 *
5
 * @link      https://github.com/hiqdev/yii2-hiart
6
 * @package   yii2-hiart
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hiqdev\hiart\curl;
12
13
use hiqdev\hiart\AbstractResponse;
14
15
/**
16
 * cURL response implementation.
17
 *
18
 * @author Andrii Vasyliev <[email protected]>
19
 */
20
class Response extends AbstractResponse
21
{
22
    public function getRawData()
23
    {
24
25
    }
26
27
    public function getHeader($name)
28
    {
29
30
    }
31
32
    public function getStatusCode()
33
    {
34
35
    }
36
37
    public function getReasonPhrase()
38
    {
39
40
    }
41
}
42