|
|
@@ -50,7 +50,7 @@ abstract class Zend_Cache
|
|
|
public static $standardExtendedBackends = array('File', 'Apc', 'TwoLevels', 'Memcached', 'Sqlite');
|
|
|
|
|
|
/**
|
|
|
- * Only for backward compatibily (may be removed in next major release)
|
|
|
+ * Only for backward compatibility (may be removed in next major release)
|
|
|
*
|
|
|
* @var array
|
|
|
* @deprecated
|
|
|
@@ -58,7 +58,7 @@ abstract class Zend_Cache
|
|
|
public static $availableFrontends = array('Core', 'Output', 'Class', 'File', 'Function', 'Page');
|
|
|
|
|
|
/**
|
|
|
- * Only for backward compatibily (may be removed in next major release)
|
|
|
+ * Only for backward compatibility (may be removed in next major release)
|
|
|
*
|
|
|
* @var array
|
|
|
* @deprecated
|
|
|
@@ -83,7 +83,7 @@ abstract class Zend_Cache
|
|
|
* @param array $backendOptions associative array of options for the corresponding backend constructor
|
|
|
* @param boolean $customFrontendNaming if true, the frontend argument is used as a complete class name ; if false, the frontend argument is used as the end of "Zend_Cache_Frontend_[...]" class name
|
|
|
* @param boolean $customBackendNaming if true, the backend argument is used as a complete class name ; if false, the backend argument is used as the end of "Zend_Cache_Backend_[...]" class name
|
|
|
- * @param boolean $autoload if true, there will no require_once for backend and frontend (usefull only for custom backends/frontends)
|
|
|
+ * @param boolean $autoload if true, there will no require_once for backend and frontend (useful only for custom backends/frontends)
|
|
|
* @throws Zend_Cache_Exception
|
|
|
* @return Zend_Cache_Core|Zend_Cache_Frontend
|
|
|
*/
|
|
|
@@ -112,7 +112,7 @@ abstract class Zend_Cache
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Frontend Constructor
|
|
|
+ * Backend Constructor
|
|
|
*
|
|
|
* @param string $backend
|
|
|
* @param array $backendOptions
|
|
|
@@ -153,7 +153,7 @@ abstract class Zend_Cache
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Backend Constructor
|
|
|
+ * Frontend Constructor
|
|
|
*
|
|
|
* @param string $frontend
|
|
|
* @param array $frontendOptions
|