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

Request::createWorker()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
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