fix doc block endings

This commit is contained in:
euromark 2013-01-11 15:06:54 +01:00
parent 92d9b11aee
commit 11a88042bd
36 changed files with 82 additions and 82 deletions

View file

@ -30,7 +30,7 @@ class ApcEngine extends CacheEngine {
* (prefixed witht the global configuration prefix)
*
* @var array
**/
*/
protected $_compiledGroupNames = array();
/**
@ -144,7 +144,7 @@ class ApcEngine extends CacheEngine {
* the group accordingly.
*
* @return array
**/
*/
public function groups() {
if (empty($this->_compiledGroupNames)) {
foreach ($this->settings['groups'] as $group) {
@ -176,7 +176,7 @@ class ApcEngine extends CacheEngine {
* old values will remain in storage until they expire.
*
* @return boolean success
**/
*/
public function clearGroup($group) {
apc_inc($this->settings['prefix'] . $group, 1, $success);
return $success;