Test Failed
Branch master (0f2f24)
by smiley
02:23
created

HTTPClientAbstract   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 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