| @@ -33,7 +33,7 @@ discard block | ||
| 33 | 33 | /** | 
| 34 | 34 | * Construct new ApcCache instance | 
| 35 | 35 | */ | 
| 36 | -	public function __construct() { | |
| 36 | +    public function __construct() { | |
| 37 | 37 | parent::__construct(); | 
| 38 | 38 |              if (!$this->isSupported()) { | 
| 39 | 39 |                  show_error('The cache for APC[u] driver is not available. Check if APC[u] extension is loaded and enabled.'); | 
| @@ -79,7 +79,7 @@ discard block | ||
| 79 | 79 |          public function set($key, $data, $ttl = 0) { | 
| 80 | 80 | $expire = time() + $ttl; | 
| 81 | 81 |              $this->logger->debug('Setting cache data for key [' . $key . '], time to live [' . $ttl . '], ' | 
| 82 | -                                 . 'expire at [' . date('Y-m-d H:i:s', $expire) . ']'); | |
| 82 | +                                    . 'expire at [' . date('Y-m-d H:i:s', $expire) . ']'); | |
| 83 | 83 | $result = apc_store($key, $data, $ttl); | 
| 84 | 84 |              if ($result === false) { | 
| 85 | 85 |                  $this->logger->error('Can not save cache data for the key [' . $key . '], return false'); | 
| @@ -127,7 +127,7 @@ discard block | ||
| 127 | 127 | 'mtime' => $cacheInfos['creation_time'], | 
| 128 | 128 | 'expire' => $cacheInfos['creation_time'] + $cacheInfos['ttl'], | 
| 129 | 129 | 'ttl' => $cacheInfos['ttl'] | 
| 130 | - ); | |
| 130 | + ); | |
| 131 | 131 | } | 
| 132 | 132 |              $this->logger->info('This cache does not exists skipping'); | 
| 133 | 133 | return false; |