StashFactory::create()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
/**
3
 * StashFactory.php
4
 *
5
 * @copyright      More in license.md
6
 * @license        https://www.ipublikuj.eu
7
 * @author         Adam Kadlec <[email protected]>
8
 * @package        iPublikuj:Flysystem!
9
 * @subpackage     Cache
10
 * @since          1.0.0
11
 *
12
 * @date           26.04.16
13
 */
14
15
declare(strict_types = 1);
16
17
namespace IPub\Flysystem\Factories\Cache;
18
19
use Nette\DI;
20
use Nette\Utils;
21
22
use League\Flysystem\Cached;
23
24
use Stash;
25
26
/**
27
 * Stash cache
28
 *
29
 * @package        iPublikuj:Flysystem!
30
 * @subpackage     Cache
31
 *
32
 * @author         Adam Kadlec <[email protected]>
33
 */
34
class StashFactory
35
{
36
	/**
37
	 * @param Utils\ArrayHash $parameters
38
	 * @param DI\Container $container
39
	 *
40
	 * @return Cached\Storage\Stash
41
	 */
42
	public static function create(Utils\ArrayHash $parameters, DI\Container $container) : Cached\Storage\Stash
43
	{
44
		/** @var Stash\Pool $pool */
45
		$pool = $container->getService($parameters->pool);
46
47
		return new Cached\Storage\Stash($pool, $parameters->key, $parameters->expires);
48
	}
49
}
50