Completed
Push — master ( 59b3e2...6dd6b9 )
by Andrii
15:38
created

Request   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A createWorker() 0 3 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\AbstractRequest;
14
15
/**
16
 * cURL request implementation.
17
 *
18
 * @author Andrii Vasyliev <[email protected]>
19
 */
20
class Request extends AbstractRequest
0 ignored issues
show
Bug introduced by
There is one abstract method send in this class; you could implement it, or declare this class as abstract.
Loading history...
21
{
22
    protected $workerClass = RequestWorker::class;
23
24
    protected function createWorker()
25
    {
26
    }
27
}
28