Passed
Push — v7 ( ba093b...24d66b )
by Georges
02:14
created
lib/Phpfastcache/Core/Item/ItemExtendedTrait.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  * @author Georges.L (Geolim4)  <[email protected]>
12 12
  *
13 13
  */
14
-declare(strict_types=1);
14
+declare(strict_types = 1);
15 15
 
16 16
 namespace Phpfastcache\Core\Item;
17 17
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
             $this->driver = $driver;
71 71
             $this->driver->setItem($this);
72 72
             $this->expirationDate = new \DateTime();
73
-            if($this->driver->getConfig()->isItemDetailedDate()){
73
+            if ($this->driver->getConfig()->isItemDetailedDate()) {
74 74
                 $this->creationDate = new \DateTime();
75 75
                 $this->modificationDate = new \DateTime();
76 76
             }
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
         {
225 225
             case 'array':
226 226
             case 'object':
227
-                if(\is_array($this->data) || $this->data instanceof \Countable){
227
+                if (\is_array($this->data) || $this->data instanceof \Countable) {
228 228
                     return \count($this->data);
229 229
                 }
230 230
             break;
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
         if (\is_array($this->data)) {
283 283
             $this->data[] = $data;
284 284
         } else if (\is_string($data)) {
285
-            $this->data .= (string)$data;
285
+            $this->data .= (string) $data;
286 286
         } else {
287 287
             throw new PhpfastcacheInvalidArgumentException('$data must be either array nor string.');
288 288
         }
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
         if (\is_array($this->data)) {
302 302
             \array_unshift($this->data, $data);
303 303
         } else if (\is_string($data)) {
304
-            $this->data = (string)$data . $this->data;
304
+            $this->data = (string) $data . $this->data;
305 305
         } else {
306 306
             throw new PhpfastcacheInvalidArgumentException('$data must be either array nor string.');
307 307
         }
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
     public function removeTag($tagName): ExtendedCacheItemInterface
381 381
     {
382 382
         if (($key = array_search($tagName, $this->tags)) !== false) {
383
-            unset($this->tags[ $key ]);
383
+            unset($this->tags[$key]);
384 384
             $this->removedTags[] = $tagName;
385 385
         }
386 386
 
@@ -459,8 +459,8 @@  discard block
 block discarded – undo
459 459
     final public function __debugInfo()
460 460
     {
461 461
         $info = \get_object_vars($this);
462
-        $info[ 'driver' ] = 'object(' . \get_class($info[ 'driver' ]) . ')';
462
+        $info['driver'] = 'object(' . \get_class($info['driver']) . ')';
463 463
 
464
-        return (array)$info;
464
+        return (array) $info;
465 465
     }
466 466
 }
467 467
\ No newline at end of file
Please login to merge, or discard this patch.
lib/Phpfastcache/Core/Pool/DriverBaseTrait.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 use Phpfastcache\Config\ConfigurationOption;
19 19
 use Phpfastcache\Core\Item\ExtendedCacheItemInterface;
20 20
 use Phpfastcache\Exceptions\{
21
-  PhpfastcacheInvalidArgumentException, PhpfastcacheDriverCheckException, PhpfastcacheLogicException
21
+    PhpfastcacheInvalidArgumentException, PhpfastcacheDriverCheckException, PhpfastcacheLogicException
22 22
 };
23 23
 use Phpfastcache\Util\ArrayObject;
24 24
 
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
     public function driverPreWrap(ExtendedCacheItemInterface $item): array
164 164
     {
165 165
         $wrap = [
166
-          self::DRIVER_DATA_WRAPPER_INDEX => $item->get(),
167
-          self::DRIVER_TAGS_WRAPPER_INDEX => $item->getTags(),
168
-          self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(),
166
+            self::DRIVER_DATA_WRAPPER_INDEX => $item->get(),
167
+            self::DRIVER_TAGS_WRAPPER_INDEX => $item->getTags(),
168
+            self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(),
169 169
         ];
170 170
 
171 171
         if ($this->getConfig()->isItemDetailedDate()) {
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  * @author Georges.L (Geolim4)  <[email protected]>
12 12
  *
13 13
  */
14
-declare(strict_types=1);
14
+declare(strict_types = 1);
15 15
 
16 16
 namespace Phpfastcache\Core\Pool;
17 17
 
@@ -169,15 +169,15 @@  discard block
 block discarded – undo
169 169
         ];
170 170
 
171 171
         if ($this->getConfig()->isItemDetailedDate()) {
172
-            $wrap[ self::DRIVER_MDATE_WRAPPER_INDEX ] = new \DateTime();
172
+            $wrap[self::DRIVER_MDATE_WRAPPER_INDEX] = new \DateTime();
173 173
             /**
174 174
              * If the creation date exists
175 175
              * reuse it else set a new Date
176 176
              */
177
-            $wrap[ self::DRIVER_CDATE_WRAPPER_INDEX ] = $item->getCreationDate() ?: new \DateTime();
177
+            $wrap[self::DRIVER_CDATE_WRAPPER_INDEX] = $item->getCreationDate() ?: new \DateTime();
178 178
         } else {
179
-            $wrap[ self::DRIVER_MDATE_WRAPPER_INDEX ] = null;
180
-            $wrap[ self::DRIVER_CDATE_WRAPPER_INDEX ] = null;
179
+            $wrap[self::DRIVER_MDATE_WRAPPER_INDEX] = null;
180
+            $wrap[self::DRIVER_CDATE_WRAPPER_INDEX] = null;
181 181
         }
182 182
 
183 183
         return $wrap;
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      */
190 190
     public function driverUnwrapData(array $wrapper)
191 191
     {
192
-        return $wrapper[ self::DRIVER_DATA_WRAPPER_INDEX ];
192
+        return $wrapper[self::DRIVER_DATA_WRAPPER_INDEX];
193 193
     }
194 194
 
195 195
     /**
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      */
199 199
     public function driverUnwrapTags(array $wrapper)
200 200
     {
201
-        return $wrapper[ self::DRIVER_TAGS_WRAPPER_INDEX ];
201
+        return $wrapper[self::DRIVER_TAGS_WRAPPER_INDEX];
202 202
     }
203 203
 
204 204
 
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
      */
209 209
     public function driverUnwrapEdate(array $wrapper)
210 210
     {
211
-        return $wrapper[ self::DRIVER_EDATE_WRAPPER_INDEX ];
211
+        return $wrapper[self::DRIVER_EDATE_WRAPPER_INDEX];
212 212
     }
213 213
 
214 214
     /**
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
      */
218 218
     public function driverUnwrapCdate(array $wrapper)
219 219
     {
220
-        return $wrapper[ self::DRIVER_CDATE_WRAPPER_INDEX ];
220
+        return $wrapper[self::DRIVER_CDATE_WRAPPER_INDEX];
221 221
     }
222 222
 
223 223
 
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
      */
228 228
     public function driverUnwrapMdate(array $wrapper)
229 229
     {
230
-        return $wrapper[ self::DRIVER_MDATE_WRAPPER_INDEX ];
230
+        return $wrapper[self::DRIVER_MDATE_WRAPPER_INDEX];
231 231
     }
232 232
 
233 233
     /**
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
              * that has slow performances
285 285
              */
286 286
 
287
-            $tagsItem->set(array_merge((array)$data, [$item->getKey() => $expTimestamp]));
287
+            $tagsItem->set(array_merge((array) $data, [$item->getKey() => $expTimestamp]));
288 288
 
289 289
             /**
290 290
              * Set the expiration date
@@ -306,9 +306,9 @@  discard block
 block discarded – undo
306 306
         $tagsItems = $this->getItems($this->getTagKeys($item->getRemovedTags()));
307 307
 
308 308
         foreach ($tagsItems as $tagsItem) {
309
-            $data = (array)$tagsItem->get();
309
+            $data = (array) $tagsItem->get();
310 310
 
311
-            unset($data[ $item->getKey() ]);
311
+            unset($data[$item->getKey()]);
312 312
             $tagsItem->set($data);
313 313
 
314 314
             /**
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
     public static function getConfigClass(): string
390 390
     {
391 391
         $localConfigClass = substr(static::class, 0, strrpos(static::class, '\\')) . '\Config';
392
-        if(\class_exists($localConfigClass) && is_a($localConfigClass, ConfigurationOption::class, true)){
392
+        if (\class_exists($localConfigClass) && is_a($localConfigClass, ConfigurationOption::class, true)) {
393 393
             return $localConfigClass;
394 394
         }
395 395
         return ConfigurationOption::class;
Please login to merge, or discard this patch.
lib/Phpfastcache/Core/Pool/CacheItemPoolTrait.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 use Phpfastcache\Entities\ItemBatch;
22 22
 use Phpfastcache\Util\ClassNamespaceResolverTrait;
23 23
 use Phpfastcache\Exceptions\{
24
-  PhpfastcacheInvalidArgumentException, PhpfastcacheCoreException, PhpfastcacheLogicException
24
+    PhpfastcacheInvalidArgumentException, PhpfastcacheCoreException, PhpfastcacheLogicException
25 25
 };
26 26
 use Phpfastcache\Config\ConfigurationOption;
27 27
 use Psr\Cache\CacheItemInterface;
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
                     if ($driverArray) {
91 91
                         if (!\is_array($driverArray)) {
92 92
                             throw new PhpfastcacheCoreException(\sprintf('The driverRead method returned an unexpected variable type: %s',
93
-                              \gettype($driverArray)));
93
+                                \gettype($driverArray)));
94 94
                         }
95 95
                         $driverData = $this->driverUnwrapData($driverArray);
96 96
 
@@ -155,9 +155,9 @@  discard block
 block discarded – undo
155 155
                              * Reset the Item
156 156
                              */
157 157
                             $item->set(null)
158
-                              ->expiresAfter(\abs((int)$this->getConfig()[ 'defaultTtl' ]))
159
-                              ->setHit(false)
160
-                              ->setTags([]);
158
+                                ->expiresAfter(\abs((int)$this->getConfig()[ 'defaultTtl' ]))
159
+                                ->setHit(false)
160
+                                ->setTags([]);
161 161
                             if ($this->getConfig()->isItemDetailedDate()) {
162 162
 
163 163
                                 /**
@@ -341,8 +341,8 @@  discard block
 block discarded – undo
341 341
             $class = new \ReflectionClass((new \ReflectionObject($this))->getNamespaceName() . '\Item');
342 342
             $itemBatch = $class->newInstanceArgs([$this, $item->getKey()]);
343 343
             $itemBatch->setEventManager($this->eventManager)
344
-              ->set(new ItemBatch($item->getKey(), new \DateTime()))
345
-              ->expiresAfter($this->getConfig()->getCacheSlamsTimeout());
344
+                ->set(new ItemBatch($item->getKey(), new \DateTime()))
345
+                ->expiresAfter($this->getConfig()->getCacheSlamsTimeout());
346 346
 
347 347
             /**
348 348
              * To avoid SPL mismatches
Please login to merge, or discard this patch.
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  * @author Georges.L (Geolim4)  <[email protected]>
12 12
  *
13 13
  */
14
-declare(strict_types=1);
14
+declare(strict_types = 1);
15 15
 
16 16
 namespace Phpfastcache\Core\Pool;
17 17
 
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
              * due to performance issue on huge
72 72
              * loop dispatching operations
73 73
              */
74
-            if (!isset($this->itemInstances[ $key ])) {
74
+            if (!isset($this->itemInstances[$key])) {
75 75
                 if (\preg_match('~([' . \preg_quote(self::$unsupportedKeyChars, '~') . ']+)~', $key, $matches)) {
76
-                    throw new PhpfastcacheInvalidArgumentException('Unsupported key character detected: "' . $matches[ 1 ] . '". Please check: https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV6%5D-Unsupported-characters-in-key-identifiers');
76
+                    throw new PhpfastcacheInvalidArgumentException('Unsupported key character detected: "' . $matches[1] . '". Please check: https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV6%5D-Unsupported-characters-in-key-identifiers');
77 77
                 }
78 78
 
79 79
                 CacheManager::$ReadHits++;
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                         }
95 95
                         $driverData = $this->driverUnwrapData($driverArray);
96 96
 
97
-                        if ($this->getConfig()[ 'preventCacheSlams' ]) {
97
+                        if ($this->getConfig()['preventCacheSlams']) {
98 98
                             while ($driverData instanceof ItemBatch) {
99 99
                                 if ($driverData->getItemDate()->getTimestamp() + $this->getConfig()->getCacheSlamsTimeout() < \time()) {
100 100
                                     /**
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
                              * Reset the Item
156 156
                              */
157 157
                             $item->set(null)
158
-                              ->expiresAfter(\abs((int)$this->getConfig()[ 'defaultTtl' ]))
158
+                              ->expiresAfter(\abs((int) $this->getConfig()['defaultTtl']))
159 159
                               ->setHit(false)
160 160
                               ->setTags([]);
161 161
                             if ($this->getConfig()->isItemDetailedDate()) {
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
                             $item->setHit(true);
173 173
                         }
174 174
                     } else {
175
-                        $item->expiresAfter(abs((int)$this->getConfig()[ 'defaultTtl' ]));
175
+                        $item->expiresAfter(abs((int) $this->getConfig()['defaultTtl']));
176 176
                     }
177 177
                 }
178 178
             }
@@ -185,9 +185,9 @@  discard block
 block discarded – undo
185 185
          * @param $this ExtendedCacheItemPoolInterface
186 186
          * @param $this ExtendedCacheItemInterface
187 187
          */
188
-        $this->eventManager->dispatch('CacheGetItem', $this, $this->itemInstances[ $key ]);
188
+        $this->eventManager->dispatch('CacheGetItem', $this, $this->itemInstances[$key]);
189 189
 
190
-        return $this->itemInstances[ $key ];
190
+        return $this->itemInstances[$key];
191 191
     }
192 192
 
193 193
     /**
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     public function setItem(CacheItemInterface $item)
199 199
     {
200 200
         if ($this->getClassNamespace() . '\\Item' === \get_class($item)) {
201
-            $this->itemInstances[ $item->getKey() ] = $item;
201
+            $this->itemInstances[$item->getKey()] = $item;
202 202
 
203 203
             return $this;
204 204
         }
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
     {
216 216
         $collection = [];
217 217
         foreach ($keys as $key) {
218
-            $collection[ $key ] = $this->getItem($key);
218
+            $collection[$key] = $this->getItem($key);
219 219
         }
220 220
 
221 221
         return $collection;
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
             }
303 303
         }
304 304
 
305
-        return (bool)$return;
305
+        return (bool) $return;
306 306
     }
307 307
 
308 308
     /**
@@ -320,9 +320,9 @@  discard block
 block discarded – undo
320 320
          * due to performance issue on huge
321 321
          * loop dispatching operations
322 322
          */
323
-        if (!isset($this->itemInstances[ $item->getKey() ])) {
324
-            $this->itemInstances[ $item->getKey() ] = $item;
325
-        } else if (\spl_object_hash($item) !== \spl_object_hash($this->itemInstances[ $item->getKey() ])) {
323
+        if (!isset($this->itemInstances[$item->getKey()])) {
324
+            $this->itemInstances[$item->getKey()] = $item;
325
+        } else if (\spl_object_hash($item) !== \spl_object_hash($this->itemInstances[$item->getKey()])) {
326 326
             throw new \RuntimeException('Spl object hash mismatches ! You probably tried to save a detached item which has been already retrieved from cache.');
327 327
         }
328 328
 
@@ -374,8 +374,8 @@  discard block
 block discarded – undo
374 374
     public function saveDeferred(CacheItemInterface $item)
375 375
     {
376 376
         if (!\array_key_exists($item->getKey(), $this->itemInstances)) {
377
-            $this->itemInstances[ $item->getKey() ] = $item;
378
-        } else if (\spl_object_hash($item) !== \spl_object_hash($this->itemInstances[ $item->getKey() ])) {
377
+            $this->itemInstances[$item->getKey()] = $item;
378
+        } else if (\spl_object_hash($item) !== \spl_object_hash($this->itemInstances[$item->getKey()])) {
379 379
             throw new \RuntimeException('Spl object hash mismatches ! You probably tried to save a detached item which has been already retrieved from cache.');
380 380
         }
381 381
 
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
          */
387 387
         $this->eventManager->dispatch('CacheSaveDeferredItem', $this, $item);
388 388
 
389
-        return $this->deferredList[ $item->getKey() ] = $item;
389
+        return $this->deferredList[$item->getKey()] = $item;
390 390
     }
391 391
 
392 392
     /**
@@ -406,11 +406,11 @@  discard block
 block discarded – undo
406 406
         foreach ($this->deferredList as $key => $item) {
407 407
             $result = $this->save($item);
408 408
             if ($return !== false) {
409
-                unset($this->deferredList[ $key ]);
409
+                unset($this->deferredList[$key]);
410 410
                 $return = $result;
411 411
             }
412 412
         }
413 413
 
414
-        return (bool)$return;
414
+        return (bool) $return;
415 415
     }
416 416
 }
417 417
\ No newline at end of file
Please login to merge, or discard this patch.
lib/Phpfastcache/Core/Pool/IO/IOHelperTrait.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  * @author Georges.L (Geolim4)  <[email protected]>
12 12
  *
13 13
  */
14
-declare(strict_types=1);
14
+declare(strict_types = 1);
15 15
 
16 16
 namespace Phpfastcache\Core\Pool\IO;
17 17
 
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
         {
57 57
             $securityKey = \array_key_exists('securityKey', $this->getConfig()) ? $this->getConfig()->getSecurityKey() : '';
58 58
             if (!$securityKey || mb_strtolower($securityKey) === 'auto') {
59
-                if (isset($_SERVER[ 'HTTP_HOST' ])) {
60
-                    $securityKey = preg_replace('/^www./', '', \strtolower(\str_replace(':', '_', $_SERVER[ 'HTTP_HOST' ])));
59
+                if (isset($_SERVER['HTTP_HOST'])) {
60
+                    $securityKey = preg_replace('/^www./', '', \strtolower(\str_replace(':', '_', $_SERVER['HTTP_HOST'])));
61 61
                 } else {
62 62
                     $securityKey = ($this->isPHPModule() ? 'web' : 'cli');
63 63
                 }
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             return $full_path;
101 101
         }
102 102
 
103
-        if (!isset($this->tmp[ $full_path_hash ]) || (!@\file_exists($full_path) || !@\is_writable($full_path))) {
103
+        if (!isset($this->tmp[$full_path_hash]) || (!@\file_exists($full_path) || !@\is_writable($full_path))) {
104 104
             if (!@\file_exists($full_path)) {
105 105
                 @mkdir($full_path, $this->getDefaultChmod(), true);
106 106
             } else if (!@\is_writable($full_path)) {
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
                 throw new PhpfastcacheIOException('Path "' . $full_path . '" is not writable, please set a chmod 0777 or any writable permission and make sure to make use of an absolute path !');
126 126
             }
127 127
 
128
-            $this->tmp[ $full_path_hash ] = $full_path;
128
+            $this->tmp[$full_path_hash] = $full_path;
129 129
             $this->htaccessGen($full_path, \array_key_exists('htaccess', $this->getConfig()) ? $this->getConfig()->getHtaccess() : false);
130 130
         }
131 131
 
Please login to merge, or discard this patch.
lib/Phpfastcache/CacheManager.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 use Phpfastcache\Config\ConfigurationOption;
19 19
 use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface;
20 20
 use Phpfastcache\Exceptions\{
21
-  PhpfastcacheDeprecatedException, PhpfastcacheDriverCheckException, PhpfastcacheDriverNotFoundException, PhpfastcacheInstanceNotFoundException, PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidConfigurationException, PhpfastcacheLogicException, PhpfastcacheUnsupportedOperationException
21
+    PhpfastcacheDeprecatedException, PhpfastcacheDriverCheckException, PhpfastcacheDriverNotFoundException, PhpfastcacheInstanceNotFoundException, PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidConfigurationException, PhpfastcacheLogicException, PhpfastcacheUnsupportedOperationException
22 22
 };
23 23
 use Phpfastcache\Util\ClassNamespaceResolverTrait;
24 24
 
@@ -102,8 +102,8 @@  discard block
 block discarded – undo
102 102
         if (\is_array($config)) {
103 103
             $config = new ConfigurationOption($config);
104 104
             trigger_error(
105
-              'The CacheManager will drops the support of primitive configuration arrays, use a "\Phpfastcache\Config\ConfigurationOption" object instead',
106
-              E_USER_DEPRECATED
105
+                'The CacheManager will drops the support of primitive configuration arrays, use a "\Phpfastcache\Config\ConfigurationOption" object instead',
106
+                E_USER_DEPRECATED
107 107
             );
108 108
         }elseif ($config === null){
109 109
             $config = self::getDefaultConfig();
@@ -304,27 +304,27 @@  discard block
 block discarded – undo
304 304
     {
305 305
         trigger_error(\sprintf('Method "%s" is deprecated as of the V7 and will be removed soon or later, use CacheManager::getDriverList() instead.', __METHOD__), E_USER_DEPRECATED);
306 306
         return [
307
-          'Apc',
308
-          'Apcu',
309
-          'Cassandra',
310
-          'Couchbase',
311
-          'Couchdb',
312
-          'Devnull',
313
-          'Files',
314
-          'Leveldb',
315
-          'Memcache',
316
-          'Memcached',
317
-          'Memstatic',
318
-          'Mongodb',
319
-          'Predis',
320
-          'Redis',
321
-          'Riak',
322
-          'Ssdb',
323
-          'Sqlite',
324
-          'Wincache',
325
-          'Xcache',
326
-          'Zenddisk',
327
-          'Zendshm',
307
+            'Apc',
308
+            'Apcu',
309
+            'Cassandra',
310
+            'Couchbase',
311
+            'Couchdb',
312
+            'Devnull',
313
+            'Files',
314
+            'Leveldb',
315
+            'Memcache',
316
+            'Memcached',
317
+            'Memstatic',
318
+            'Mongodb',
319
+            'Predis',
320
+            'Redis',
321
+            'Riak',
322
+            'Ssdb',
323
+            'Sqlite',
324
+            'Wincache',
325
+            'Xcache',
326
+            'Zenddisk',
327
+            'Zendshm',
328 328
         ];
329 329
     }
330 330
 
@@ -336,9 +336,9 @@  discard block
 block discarded – undo
336 336
     {
337 337
         trigger_error(\sprintf('Method "%s" is deprecated as of the V7 and will be removed soon or later, use CacheManager::getDriverList() instead.', __METHOD__), E_USER_DEPRECATED);
338 338
         return \array_merge(self::getStaticSystemDrivers(), [
339
-          'Devtrue',
340
-          'Devfalse',
341
-          'Cookie',
339
+            'Devtrue',
340
+            'Devfalse',
341
+            'Cookie',
342 342
         ]);
343 343
     }
344 344
 
Please login to merge, or discard this patch.
lib/Phpfastcache/Drivers/Predis/Driver.php 3 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 use Phpfastcache\Core\Pool\{DriverBaseTrait, ExtendedCacheItemPoolInterface};
20 20
 use Phpfastcache\Entities\DriverStatistic;
21 21
 use Phpfastcache\Exceptions\{
22
-  PhpfastcacheInvalidArgumentException, PhpfastcacheDriverException
22
+    PhpfastcacheInvalidArgumentException, PhpfastcacheDriverException
23 23
 };
24 24
 use Phpfastcache\Util\ArrayObject;
25 25
 use Predis\Client as PredisClient;
@@ -57,8 +57,8 @@  discard block
 block discarded – undo
57 57
     {
58 58
         if(!empty($this->getConfig()->getPath())){
59 59
             $this->instance = new PredisClient([
60
-              'scheme' => 'unix',
61
-              'path' =>  $this->getConfig()->getPath()
60
+                'scheme' => 'unix',
61
+                'path' =>  $this->getConfig()->getPath()
62 62
             ]);
63 63
         }else{
64 64
             $this->instance = new PredisClient($this->getConfig()->getPredisConfigArray());
@@ -171,10 +171,10 @@  discard block
 block discarded – undo
171 171
         $date = (isset($info[ 'Server' ][ 'uptime_in_seconds' ]) ? (new \DateTime())->setTimestamp(\time() - $info[ 'Server' ][ 'uptime_in_seconds' ]) : 'unknown date');
172 172
 
173 173
         return (new DriverStatistic())
174
-          ->setData(\implode(', ', \array_keys($this->itemInstances)))
175
-          ->setRawData($info)
176
-          ->setSize((int) $size)
177
-          ->setInfo(\sprintf("The Redis daemon v%s is up since %s.\n For more information see RawData. \n Driver size includes the memory allocation size.",
174
+            ->setData(\implode(', ', \array_keys($this->itemInstances)))
175
+            ->setRawData($info)
176
+            ->setSize((int) $size)
177
+            ->setInfo(\sprintf("The Redis daemon v%s is up since %s.\n For more information see RawData. \n Driver size includes the memory allocation size.",
178 178
             $version, $date->format(DATE_RFC2822)));
179 179
     }
180 180
 }
181 181
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  * @author Georges.L (Geolim4)  <[email protected]>
13 13
  *
14 14
  */
15
-declare(strict_types=1);
15
+declare(strict_types = 1);
16 16
 
17 17
 namespace Phpfastcache\Drivers\Predis;
18 18
 
@@ -55,12 +55,12 @@  discard block
 block discarded – undo
55 55
      */
56 56
     protected function driverConnect(): bool
57 57
     {
58
-        if(!empty($this->getConfig()->getPath())){
58
+        if (!empty($this->getConfig()->getPath())) {
59 59
             $this->instance = new PredisClient([
60 60
               'scheme' => 'unix',
61 61
               'path' =>  $this->getConfig()->getPath()
62 62
             ]);
63
-        }else{
63
+        } else {
64 64
             $this->instance = new PredisClient($this->getConfig()->getPredisConfigArray());
65 65
         }
66 66
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
              * @see https://redis.io/commands/expire
107 107
              */
108 108
             if ($ttl <= 0) {
109
-                return (bool)$this->instance->expire($item->getKey(), 0);
109
+                return (bool) $this->instance->expire($item->getKey(), 0);
110 110
             }
111 111
 
112 112
             return $this->instance->setex($item->getKey(), $ttl, $this->encode($this->driverPreWrap($item)))->getPayload() === 'OK';
@@ -166,9 +166,9 @@  discard block
 block discarded – undo
166 166
     public function getStats(): DriverStatistic
167 167
     {
168 168
         $info = $this->instance->info();
169
-        $size = (isset($info[ 'Memory' ][ 'used_memory' ]) ? $info[ 'Memory' ][ 'used_memory' ] : 0);
170
-        $version = (isset($info[ 'Server' ][ 'redis_version' ]) ? $info[ 'Server' ][ 'redis_version' ] : 0);
171
-        $date = (isset($info[ 'Server' ][ 'uptime_in_seconds' ]) ? (new \DateTime())->setTimestamp(\time() - $info[ 'Server' ][ 'uptime_in_seconds' ]) : 'unknown date');
169
+        $size = (isset($info['Memory']['used_memory']) ? $info['Memory']['used_memory'] : 0);
170
+        $version = (isset($info['Server']['redis_version']) ? $info['Server']['redis_version'] : 0);
171
+        $date = (isset($info['Server']['uptime_in_seconds']) ? (new \DateTime())->setTimestamp(\time() - $info['Server']['uptime_in_seconds']) : 'unknown date');
172 172
 
173 173
         return (new DriverStatistic())
174 174
           ->setData(\implode(', ', \array_keys($this->itemInstances)))
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
               'scheme' => 'unix',
61 61
               'path' =>  $this->getConfig()->getPath()
62 62
             ]);
63
-        }else{
63
+        } else{
64 64
             $this->instance = new PredisClient($this->getConfig()->getPredisConfigArray());
65 65
         }
66 66
 
Please login to merge, or discard this patch.
lib/Phpfastcache/Drivers/Memcache/Driver.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 use Phpfastcache\Core\Pool\{DriverBaseTrait, ExtendedCacheItemPoolInterface};
21 21
 use Phpfastcache\Entities\DriverStatistic;
22 22
 use Phpfastcache\Exceptions\{
23
-  PhpfastcacheInvalidArgumentException, PhpfastcacheDriverException
23
+    PhpfastcacheInvalidArgumentException, PhpfastcacheDriverException
24 24
 };
25 25
 use Phpfastcache\Util\{ArrayObject, MemcacheDriverCollisionDetectorTrait};
26 26
 use Psr\Cache\CacheItemInterface;
@@ -74,13 +74,13 @@  discard block
 block discarded – undo
74 74
 
75 75
         if (\count($servers) < 1) {
76 76
             $servers = [
77
-              [
77
+                [
78 78
                 'host' => $this->getConfig()->getHost(),
79 79
                 'path' => $this->getConfig()->getPath(),
80 80
                 'port' => $this->getConfig()->getPort(),
81 81
                 'saslUser' => $this->getConfig()->getSaslUser() ?: false,
82 82
                 'saslPassword' => $this->getConfig()->getSaslPassword() ?: false,
83
-              ],
83
+                ],
84 84
             ];
85 85
         }
86 86
 
@@ -197,9 +197,9 @@  discard block
 block discarded – undo
197 197
         $date = (new \DateTime())->setTimestamp(\time() - $stats[ 'uptime' ]);
198 198
 
199 199
         return (new DriverStatistic())
200
-          ->setData(\implode(', ', \array_keys($this->itemInstances)))
201
-          ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats[ 'version' ], $date->format(DATE_RFC2822)))
202
-          ->setRawData($stats)
203
-          ->setSize((int)$stats[ 'bytes' ]);
200
+            ->setData(\implode(', ', \array_keys($this->itemInstances)))
201
+            ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats[ 'version' ], $date->format(DATE_RFC2822)))
202
+            ->setRawData($stats)
203
+            ->setSize((int)$stats[ 'bytes' ]);
204 204
     }
205 205
 }
206 206
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  * @author Georges.L (Geolim4)  <[email protected]>
12 12
  *
13 13
  */
14
-declare(strict_types=1);
14
+declare(strict_types = 1);
15 15
 
16 16
 namespace Phpfastcache\Drivers\Memcache;
17 17
 
@@ -89,13 +89,13 @@  discard block
 block discarded – undo
89 89
                 /**
90 90
                  * If path is provided we consider it as an UNIX Socket
91 91
                  */
92
-                if(!empty($server[ 'path' ]) && !$this->instance->addServer($server[ 'path' ], 0)){
92
+                if (!empty($server['path']) && !$this->instance->addServer($server['path'], 0)) {
93 93
                     $this->fallback = true;
94
-                }else if (!empty($server[ 'host' ]) && !$this->instance->addServer($server[ 'host' ], $server[ 'port' ])) {
94
+                } else if (!empty($server['host']) && !$this->instance->addServer($server['host'], $server['port'])) {
95 95
                     $this->fallback = true;
96 96
                 }
97 97
 
98
-                if (!empty($server[ 'saslUser' ]) && !empty($server[ 'saslPassword' ])) {
98
+                if (!empty($server['saslUser']) && !empty($server['saslPassword'])) {
99 99
                     throw new PhpfastcacheDriverException('Unlike Memcached, Memcache does not support SASL authentication');
100 100
                 }
101 101
             } catch (\Exception $e) {
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
              * Since Memcached does not throw
107 107
              * any error if not connected ...
108 108
              */
109
-            if(!$this->instance->getServerStatus(!empty($server[ 'path' ]) ? $server[ 'path' ] : $server[ 'host' ], !empty($server[ 'port' ]) ? $server[ 'port' ] : 0)){
109
+            if (!$this->instance->getServerStatus(!empty($server['path']) ? $server['path'] : $server['host'], !empty($server['port']) ? $server['port'] : 0)) {
110 110
                 throw new PhpfastcacheDriverException('Memcache seems to not be connected');
111 111
             }
112 112
         }
@@ -189,17 +189,17 @@  discard block
 block discarded – undo
189 189
      */
190 190
     public function getStats(): DriverStatistic
191 191
     {
192
-        $stats = (array)$this->instance->getstats();
193
-        $stats[ 'uptime' ] = (isset($stats[ 'uptime' ]) ? $stats[ 'uptime' ] : 0);
194
-        $stats[ 'version' ] = (isset($stats[ 'version' ]) ? $stats[ 'version' ] : 'UnknownVersion');
195
-        $stats[ 'bytes' ] = (isset($stats[ 'bytes' ]) ? $stats[ 'version' ] : 0);
192
+        $stats = (array) $this->instance->getstats();
193
+        $stats['uptime'] = (isset($stats['uptime']) ? $stats['uptime'] : 0);
194
+        $stats['version'] = (isset($stats['version']) ? $stats['version'] : 'UnknownVersion');
195
+        $stats['bytes'] = (isset($stats['bytes']) ? $stats['version'] : 0);
196 196
 
197
-        $date = (new \DateTime())->setTimestamp(\time() - $stats[ 'uptime' ]);
197
+        $date = (new \DateTime())->setTimestamp(\time() - $stats['uptime']);
198 198
 
199 199
         return (new DriverStatistic())
200 200
           ->setData(\implode(', ', \array_keys($this->itemInstances)))
201
-          ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats[ 'version' ], $date->format(DATE_RFC2822)))
201
+          ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats['version'], $date->format(DATE_RFC2822)))
202 202
           ->setRawData($stats)
203
-          ->setSize((int)$stats[ 'bytes' ]);
203
+          ->setSize((int) $stats['bytes']);
204 204
     }
205 205
 }
206 206
\ No newline at end of file
Please login to merge, or discard this patch.
lib/Phpfastcache/Drivers/Sqlite/Driver.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 use PDOException;
20 20
 use Phpfastcache\Core\Pool\{DriverBaseTrait, ExtendedCacheItemPoolInterface, IO\IOHelperTrait};
21 21
 use Phpfastcache\Exceptions\{
22
-  PhpfastcacheInvalidArgumentException, PhpfastcacheIOException
22
+    PhpfastcacheInvalidArgumentException, PhpfastcacheIOException
23 23
 };
24 24
 use Psr\Cache\CacheItemInterface;
25 25
 
@@ -108,18 +108,18 @@  discard block
 block discarded – undo
108 108
     {
109 109
         try {
110 110
             $stm = $this->getDb($item->getKey())
111
-              ->prepare("SELECT * FROM `caching` WHERE `keyword`=:keyword LIMIT 1");
111
+                ->prepare("SELECT * FROM `caching` WHERE `keyword`=:keyword LIMIT 1");
112 112
             $stm->execute([
113
-              ':keyword' => $item->getKey(),
113
+                ':keyword' => $item->getKey(),
114 114
             ]);
115 115
             $row = $stm->fetch(PDO::FETCH_ASSOC);
116 116
 
117 117
         } catch (PDOException $e) {
118 118
             try {
119 119
                 $stm = $this->getDb($item->getKey(), true)
120
-                  ->prepare("SELECT * FROM `caching` WHERE `keyword`=:keyword LIMIT 1");
120
+                    ->prepare("SELECT * FROM `caching` WHERE `keyword`=:keyword LIMIT 1");
121 121
                 $stm->execute([
122
-                  ':keyword' => $item->getKey(),
122
+                    ':keyword' => $item->getKey(),
123 123
                 ]);
124 124
                 $row = $stm->fetch(PDO::FETCH_ASSOC);
125 125
             } catch (PDOException $e) {
@@ -147,11 +147,11 @@  discard block
 block discarded – undo
147 147
         if ($item instanceof Item) {
148 148
             try {
149 149
                 $stm = $this->getDb($item->getKey())
150
-                  ->prepare("INSERT OR REPLACE INTO `caching` (`keyword`,`object`,`exp`) values(:keyword,:object,:exp)");
150
+                    ->prepare("INSERT OR REPLACE INTO `caching` (`keyword`,`object`,`exp`) values(:keyword,:object,:exp)");
151 151
                 $stm->execute([
152
-                  ':keyword' => $item->getKey(),
153
-                  ':object' => $this->encode($this->driverPreWrap($item)),
154
-                  ':exp' => $item->getExpirationDate()->getTimestamp(),
152
+                    ':keyword' => $item->getKey(),
153
+                    ':object' => $this->encode($this->driverPreWrap($item)),
154
+                    ':exp' => $item->getExpirationDate()->getTimestamp(),
155 155
                 ]);
156 156
 
157 157
                 return true;
@@ -176,11 +176,11 @@  discard block
 block discarded – undo
176 176
         if ($item instanceof Item) {
177 177
             try {
178 178
                 $stm = $this->getDb($item->getKey())
179
-                  ->prepare("DELETE FROM `caching` WHERE (`exp` <= :U) OR (`keyword`=:keyword) ");
179
+                    ->prepare("DELETE FROM `caching` WHERE (`exp` <= :U) OR (`keyword`=:keyword) ");
180 180
 
181 181
                 return $stm->execute([
182
-                  ':keyword' => $item->getKey(),
183
-                  ':U' => \time(),
182
+                    ':keyword' => $item->getKey(),
183
+                    ':U' => \time(),
184 184
                 ]);
185 185
             } catch (PDOException $e) {
186 186
                 return false;
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 
261 261
             $PDO = new PDO("sqlite:" . $this->SqliteDir . '/' . self::INDEXING_FILE);
262 262
             $PDO->setAttribute(PDO::ATTR_ERRMODE,
263
-              PDO::ERRMODE_EXCEPTION);
263
+                PDO::ERRMODE_EXCEPTION);
264 264
 
265 265
             if ($createTable == true) {
266 266
                 $this->initIndexing($PDO);
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
         // look for keyword
296 296
         $stm = $this->indexing->prepare("SELECT * FROM `balancing` WHERE `keyword`=:keyword LIMIT 1");
297 297
         $stm->execute([
298
-          ':keyword' => $keyword,
298
+            ':keyword' => $keyword,
299 299
         ]);
300 300
         $row = $stm->fetch(PDO::FETCH_ASSOC);
301 301
         if (isset($row[ 'db' ]) && $row[ 'db' ] != '') {
@@ -307,8 +307,8 @@  discard block
 block discarded – undo
307 307
             $db = $this->currentDB;
308 308
             $stm = $this->indexing->prepare("INSERT INTO `balancing` (`keyword`,`db`) VALUES(:keyword, :db)");
309 309
             $stm->execute([
310
-              ':keyword' => $keyword,
311
-              ':db' => $db,
310
+                ':keyword' => $keyword,
311
+                ':db' => $db,
312 312
             ]);
313 313
         }
314 314
 
Please login to merge, or discard this patch.
lib/Phpfastcache/Drivers/Memcached/Driver.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 use Phpfastcache\Core\Pool\{DriverBaseTrait, ExtendedCacheItemPoolInterface};
21 21
 use Phpfastcache\Entities\DriverStatistic;
22 22
 use Phpfastcache\Exceptions\{
23
-  PhpfastcacheInvalidArgumentException, PhpfastcacheDriverException
23
+    PhpfastcacheInvalidArgumentException, PhpfastcacheDriverException
24 24
 };
25 25
 use Phpfastcache\Util\{ArrayObject, MemcacheDriverCollisionDetectorTrait};
26 26
 use Psr\Cache\CacheItemInterface;
@@ -70,13 +70,13 @@  discard block
 block discarded – undo
70 70
 
71 71
         if (\count($servers) < 1) {
72 72
             $servers = [
73
-              [
73
+                [
74 74
                 'host' => $this->getConfig()->getHost(),
75 75
                 'path' => $this->getConfig()->getPath(),
76 76
                 'port' => $this->getConfig()->getPort(),
77 77
                 'saslUser' => $this->getConfig()->getSaslUser() ?: false,
78 78
                 'saslPassword' => $this->getConfig()->getSaslPassword() ?: false,
79
-              ],
79
+                ],
80 80
             ];
81 81
         }
82 82
 
@@ -195,9 +195,9 @@  discard block
 block discarded – undo
195 195
         $date = (new \DateTime())->setTimestamp(\time() - $stats[ 'uptime' ]);
196 196
 
197 197
         return (new DriverStatistic())
198
-          ->setData(\implode(', ', \array_keys($this->itemInstances)))
199
-          ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats[ 'version' ], $date->format(DATE_RFC2822)))
200
-          ->setRawData($stats)
201
-          ->setSize((int)$stats[ 'bytes' ]);
198
+            ->setData(\implode(', ', \array_keys($this->itemInstances)))
199
+            ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats[ 'version' ], $date->format(DATE_RFC2822)))
200
+            ->setRawData($stats)
201
+            ->setSize((int)$stats[ 'bytes' ]);
202 202
     }
203 203
 }
204 204
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  * @author Georges.L (Geolim4)  <[email protected]>
12 12
  *
13 13
  */
14
-declare(strict_types=1);
14
+declare(strict_types = 1);
15 15
 
16 16
 namespace Phpfastcache\Drivers\Memcached;
17 17
 
@@ -85,14 +85,14 @@  discard block
 block discarded – undo
85 85
                 /**
86 86
                  * If path is provided we consider it as an UNIX Socket
87 87
                  */
88
-                if(!empty($server[ 'path' ]) && !$this->instance->addServer($server[ 'path' ], 0)){
88
+                if (!empty($server['path']) && !$this->instance->addServer($server['path'], 0)) {
89 89
                     $this->fallback = true;
90
-                }else if (!empty($server[ 'host' ]) && !$this->instance->addServer($server[ 'host' ], $server[ 'port' ])) {
90
+                } else if (!empty($server['host']) && !$this->instance->addServer($server['host'], $server['port'])) {
91 91
                     $this->fallback = true;
92 92
                 }
93 93
 
94
-                if (!empty($server[ 'saslUser' ]) && !empty($server[ 'saslPassword' ])) {
95
-                    $this->instance->setSaslAuthData($server[ 'saslUser' ], $server[ 'saslPassword' ]);
94
+                if (!empty($server['saslUser']) && !empty($server['saslPassword'])) {
95
+                    $this->instance->setSaslAuthData($server['saslUser'], $server['saslPassword']);
96 96
                 }
97 97
 
98 98
             } catch (\Exception $e) {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
          * any error if not connected ...
106 106
          */
107 107
         $version = $this->instance->getVersion();
108
-        if(!$version || $this->instance->getResultCode() !== MemcachedSoftware::RES_SUCCESS){
108
+        if (!$version || $this->instance->getResultCode() !== MemcachedSoftware::RES_SUCCESS) {
109 109
             throw new PhpfastcacheDriverException('Memcached seems to not be connected');
110 110
         }
111 111
         return true;
@@ -188,16 +188,16 @@  discard block
 block discarded – undo
188 188
     public function getStats(): DriverStatistic
189 189
     {
190 190
         $stats = current($this->instance->getStats());
191
-        $stats[ 'uptime' ] = (isset($stats[ 'uptime' ]) ? $stats[ 'uptime' ] : 0);
192
-        $stats[ 'version' ] = (isset($stats[ 'version' ]) ? $stats[ 'version' ] : $this->instance->getVersion());
193
-        $stats[ 'bytes' ] = (isset($stats[ 'bytes' ]) ? $stats[ 'version' ] : 0);
191
+        $stats['uptime'] = (isset($stats['uptime']) ? $stats['uptime'] : 0);
192
+        $stats['version'] = (isset($stats['version']) ? $stats['version'] : $this->instance->getVersion());
193
+        $stats['bytes'] = (isset($stats['bytes']) ? $stats['version'] : 0);
194 194
 
195
-        $date = (new \DateTime())->setTimestamp(\time() - $stats[ 'uptime' ]);
195
+        $date = (new \DateTime())->setTimestamp(\time() - $stats['uptime']);
196 196
 
197 197
         return (new DriverStatistic())
198 198
           ->setData(\implode(', ', \array_keys($this->itemInstances)))
199
-          ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats[ 'version' ], $date->format(DATE_RFC2822)))
199
+          ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats['version'], $date->format(DATE_RFC2822)))
200 200
           ->setRawData($stats)
201
-          ->setSize((int)$stats[ 'bytes' ]);
201
+          ->setSize((int) $stats['bytes']);
202 202
     }
203 203
 }
204 204
\ No newline at end of file
Please login to merge, or discard this patch.