17
17
use phpFastCache \Cache \ExtendedCacheItemPoolInterface ;
18
18
use phpFastCache \Core \DriverAbstract ;
19
19
use phpFastCache \Exceptions \phpFastCacheDriverCheckException ;
20
- use CouchbaseCluster ;
21
20
22
21
/**
23
22
* Class CacheManager
@@ -57,8 +56,8 @@ class CacheManager
57
56
'default_chmod ' => 0777 , // 0777 recommended
58
57
'path ' => '' ,// if not set will be the value of sys_get_temp_dir()
59
58
'fallback ' => false , //Fall back when old driver is not support
60
- " limited_memory_each_object " => 4096 , // maximum size (bytes) of object store in memory
61
- " compress_data " => false , // compress stored data, if the backend supports it
59
+ ' limited_memory_each_object ' => 4096 , // maximum size (bytes) of object store in memory
60
+ ' compress_data ' => false , // compress stored data, if the backend supports it
62
61
];
63
62
64
63
/**
@@ -181,6 +180,7 @@ public static function setNamespacePath($path)
181
180
* @param $name
182
181
* @param string $value
183
182
* @deprecated Method "setup" is deprecated and will be removed in 5.1. Use method "setDefaultConfig" instead.
183
+ * @throws \InvalidArgumentException
184
184
*/
185
185
public static function setup ($ name , $ value = '' )
186
186
{
@@ -191,6 +191,7 @@ public static function setup($name, $value = '')
191
191
/**
192
192
* @param $name string|array
193
193
* @param mixed $value
194
+ * @throws \InvalidArgumentException
194
195
*/
195
196
public static function setDefaultConfig ($ name , $ value = null )
196
197
{
0 commit comments