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) |
||
46 | |||
47 | 7 | /** |
|
48 | * @return string |
||
49 | 7 | */ |
|
50 | 2 | public function getAdapterName() |
|
54 | 1 | ||
55 | /** |
||
56 | 4 | * @return array |
|
57 | */ |
||
58 | 4 | public function getSettings() |
|
62 | |||
63 | 3 | /** |
|
64 | * @return string |
||
65 | */ |
||
66 | public function getAdapterNamespace() |
||
70 | } |
||
71 |