HTTPClientAbstract::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

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 2
nc 1
nop 1
1
<?php
2
/**
3
 * Class HTTPClientAbstract
4
 *
5
 * @filesource   HTTPClientAbstract.php
6
 * @created      10.06.2017
7
 * @package      chillerlan\Threema\HTTP
8
 * @author       Smiley <[email protected]>
9
 * @copyright    2017 Smiley
10
 * @license      MIT
11
 */
12
13
namespace chillerlan\Threema\HTTP;
14
15
abstract class HTTPClientAbstract implements HTTPClientInterface{
16
17
	protected $client;
18
19
	public function __construct($client){
20
		$this->client = $client;
21
	}
22
23
}
24