Completed
Push — master ( 9180ab...40753a )
by Josh
16:07
created

Http::getCachingClient()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 7
c 0
b 0
f 0
ccs 4
cts 4
cp 1
rs 9.4285
cc 2
eloc 4
nc 2
nop 1
crap 2
1
<?php
2
3
/**
4
* @package   s9e\TextFormatter
5
* @copyright Copyright (c) 2010-2018 The s9e Authors
6
* @license   http://www.opensource.org/licenses/mit-license.php The MIT License
7
*/
8
namespace s9e\TextFormatter\Utils;
9
10
use s9e\TextFormatter\Utils\Http\Clients\Cached;
11
use s9e\TextFormatter\Utils\Http\Clients\Curl;
12
use s9e\TextFormatter\Utils\Http\Clients\Native;
13
14
abstract class Http
15
{
16
	/**
17
	* Instantiate and return an HTTP client
18
	*
19
	* @return Http\Client
20
	*/
21 2
	public static function getClient()
22
	{
23 2
		return (extension_loaded('curl')) ? new Curl : new Native;
24
	}
25
	/**
26
	* Instantiate and return a caching HTTP client
27
	*
28
	* @param  string $cacheDir
29
	* @return Cached
30
	*/
31 1
	public static function getCachingClient($cacheDir = null)
32
	{
33 1
		$client = new Cached(self::getClient());
34 1
		$client->cacheDir = (isset($cacheDir)) ? $cacheDir : sys_get_temp_dir();
35
36 1
		return $client;
37
	}
38
}