@@ -94,7 +94,7 @@ class MemcachedEngine extends CacheEngine {
94
94
*
95
95
* @param array $config array of setting for the engine
96
96
* @return bool True if the engine has been successfully initialized, false if not
97
- * @throws \Cake\Error\Exception when you try use authentication without Memcached compiled with SASL support
97
+ * @throws \Cake\Core\ Error\Exception when you try use authentication without Memcached compiled with SASL support
98
98
*/
99
99
public function init (array $ config = []) {
100
100
if (!class_exists ('Memcached ' )) {
@@ -166,7 +166,7 @@ public function init(array $config = []) {
166
166
* Settings the memcached instance
167
167
*
168
168
* @return void
169
- * @throws \Cake\Error\Exception when the Memcached extension is not built with the desired serializer engine
169
+ * @throws \Cake\Core\ Error\Exception when the Memcached extension is not built with the desired serializer engine
170
170
*/
171
171
protected function _setOptions () {
172
172
$ this ->_Memcached ->setOption (Memcached::OPT_LIBKETAMA_COMPATIBLE , true );
@@ -303,7 +303,7 @@ public function readMany($keys) {
303
303
* @param string $key Identifier for the data
304
304
* @param int $offset How much to increment
305
305
* @return bool|int New incremented value, false otherwise
306
- * @throws \Cake\Error\Exception when you try to increment with compress = true
306
+ * @throws \Cake\Core\ Error\Exception when you try to increment with compress = true
307
307
*/
308
308
public function increment ($ key , $ offset = 1 ) {
309
309
$ key = $ this ->_key ($ key );
@@ -317,7 +317,7 @@ public function increment($key, $offset = 1) {
317
317
* @param string $key Identifier for the data
318
318
* @param int $offset How much to subtract
319
319
* @return bool|int New decremented value, false otherwise
320
- * @throws \Cake\Error\Exception when you try to decrement with compress = true
320
+ * @throws \Cake\Core\ Error\Exception when you try to decrement with compress = true
321
321
*/
322
322
public function decrement ($ key , $ offset = 1 ) {
323
323
$ key = $ this ->_key ($ key );
0 commit comments