Completed
Push — master ( 83cb8e...7577e4 )
by Josh
30:26
created

Http::getCachingClient()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
dl 0
loc 7
ccs 0
cts 0
cp 0
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 4
nc 2
nop 1
crap 6
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 1
	*/
21
	public static function getClient()
22 1
	{
23
		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
	public static function getCachingClient($cacheDir = null)
32
	{
33
		$client = new Cached(self::getClient());
34
		$client->cacheDir = (isset($cacheDir)) ? $cacheDir : sys_get_temp_dir();
35
36
		return $client;
37
	}
38
}