1 | <?php |
||
7 | class Config |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $adapterName; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $adapterNamespace = '\Doctrine\Common\Cache\%sCache'; |
||
18 | |||
19 | /** |
||
20 | * @var array |
||
21 | */ |
||
22 | private $settings = []; |
||
23 | |||
24 | /** |
||
25 | * @param array $config |
||
26 | */ |
||
27 | public function __construct(array $config) |
||
45 | 1 | ||
46 | /** |
||
47 | 7 | * @return string |
|
48 | */ |
||
49 | 7 | public function getAdapterName() |
|
53 | 5 | ||
54 | 1 | /** |
|
55 | * @return array |
||
56 | 4 | */ |
|
57 | public function getSettings() |
||
61 | 3 | ||
62 | /** |
||
63 | 3 | * @return string |
|
64 | */ |
||
65 | public function getAdapterNamespace() |
||
69 | } |
||
70 |