Passed
Push — v7 ( c62002...85b6af )
by Georges
02:00 queued 22s
created
lib/Phpfastcache/EventManager.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -78,8 +78,8 @@  discard block
 block discarded – undo
78 78
          * due to performance issue on huge
79 79
          * loop dispatching operations
80 80
          */
81
-        if (isset($this->events[ $eventName ])) {
82
-            foreach ($this->events[ $eventName ] as $event) {
81
+        if (isset($this->events[$eventName])) {
82
+            foreach ($this->events[$eventName] as $event) {
83 83
                 \call_user_func_array($event, $args);
84 84
             }
85 85
         }
@@ -95,14 +95,14 @@  discard block
 block discarded – undo
95 95
     {
96 96
         if (\strpos($name, 'on') === 0) {
97 97
             $name = \substr($name, 2);
98
-            if (\is_callable($arguments[ 0 ])) {
99
-                if (isset($arguments[ 1 ]) && \is_string($arguments[ 0 ])) {
100
-                    $this->events[ $name ][ $arguments[ 1 ] ] = $arguments[ 0 ];
98
+            if (\is_callable($arguments[0])) {
99
+                if (isset($arguments[1]) && \is_string($arguments[0])) {
100
+                    $this->events[$name][$arguments[1]] = $arguments[0];
101 101
                 } else {
102
-                    $this->events[ $name ][] = $arguments[ 0 ];
102
+                    $this->events[$name][] = $arguments[0];
103 103
                 }
104 104
             } else {
105
-                throw new PhpfastcacheInvalidArgumentException(\sprintf('Expected Callable, got "%s"', \gettype($arguments[ 0 ])));
105
+                throw new PhpfastcacheInvalidArgumentException(\sprintf('Expected Callable, got "%s"', \gettype($arguments[0])));
106 106
             }
107 107
         } else {
108 108
             throw new \BadMethodCallException('An event must start with "on" such as "onCacheGetItem"');
@@ -116,8 +116,8 @@  discard block
 block discarded – undo
116 116
      */
117 117
     public function unbindEventCallback(string $eventName, string $callbackName): bool
118 118
     {
119
-        $return = isset($this->events[ $eventName ][ $callbackName ]);
120
-        unset($this->events[ $eventName ][ $callbackName ]);
119
+        $return = isset($this->events[$eventName][$callbackName]);
120
+        unset($this->events[$eventName][$callbackName]);
121 121
 
122 122
         return $return;
123 123
     }
Please login to merge, or discard this patch.
lib/Phpfastcache/Api.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -64,29 +64,29 @@  discard block
 block discarded – undo
64 64
          */
65 65
         static $version;
66 66
 
67
-        if($version && $cacheable){
67
+        if ($version && $cacheable) {
68 68
             return $version;
69 69
         }
70 70
 
71
-        if(\function_exists('shell_exec')){
71
+        if (\function_exists('shell_exec')) {
72 72
             $stdout = shell_exec('git describe --abbrev=0 --tags');
73
-            if(\is_string($stdout)){
73
+            if (\is_string($stdout)) {
74 74
                 $version = \trim($stdout);
75 75
                 return $version;
76 76
             }
77 77
             throw new PhpfastcacheLogicException('The git command used to retrieve the PhpFastCache version has failed.');
78 78
         }
79 79
 
80
-        if(!$fallbackOnChangelog){
80
+        if (!$fallbackOnChangelog) {
81 81
             throw new PhpfastcacheLogicException('shell_exec is disabled therefore the PhpFastCache version cannot be retrieved.');
82 82
         }
83 83
 
84 84
         $changelogFilename = __DIR__ . '/../../CHANGELOG.md';
85
-        if(\file_exists($changelogFilename)){
85
+        if (\file_exists($changelogFilename)) {
86 86
             $versionPrefix = '## ';
87 87
             $changelog = \explode("\n", self::getPhpFastCacheChangelog());
88
-            foreach ($changelog as $line){
89
-                if(\strpos($line, $versionPrefix) === 0){
88
+            foreach ($changelog as $line) {
89
+                if (\strpos($line, $versionPrefix) === 0) {
90 90
                     $version = \trim(\str_replace($versionPrefix, '', $line));
91 91
                     return $version;
92 92
                 }
@@ -104,13 +104,13 @@  discard block
 block discarded – undo
104 104
     {
105 105
         static $hash;
106 106
 
107
-        if($hash && $cacheable){
107
+        if ($hash && $cacheable) {
108 108
             return $hash;
109 109
         }
110 110
 
111
-        if(\function_exists('shell_exec')){
111
+        if (\function_exists('shell_exec')) {
112 112
             $stdout = \shell_exec('git rev-parse --short HEAD');
113
-            if(\is_string($stdout)){
113
+            if (\is_string($stdout)) {
114 114
                 $hash = \trim($stdout);
115 115
                 return "#{$hash}";
116 116
             }
@@ -128,9 +128,9 @@  discard block
 block discarded – undo
128 128
     public static function getChangelog(): string
129 129
     {
130 130
         $changelogFilename = __DIR__ . '/../../CHANGELOG_API.md';
131
-        if(\file_exists($changelogFilename)){
131
+        if (\file_exists($changelogFilename)) {
132 132
             $string = \str_replace(["\r\n", "\r"], "\n", \trim(\file_get_contents($changelogFilename)));
133
-            if($string){
133
+            if ($string) {
134 134
                 return $string;
135 135
             }
136 136
             throw new PhpfastcacheLogicException('Unable to retrieve the PhpFastCache API changelog as it seems to be empty.');
@@ -147,9 +147,9 @@  discard block
 block discarded – undo
147 147
     public static function getPhpFastCacheChangelog(): string
148 148
     {
149 149
         $changelogFilename = __DIR__ . '/../../CHANGELOG.md';
150
-        if(\file_exists($changelogFilename)){
150
+        if (\file_exists($changelogFilename)) {
151 151
             $string = \str_replace(["\r\n", "\r"], "\n", \trim(\file_get_contents($changelogFilename)));
152
-            if($string){
152
+            if ($string) {
153 153
                 return $string;
154 154
             }
155 155
             throw new PhpfastcacheLogicException('Unable to retrieve the PhpFastCache changelog as it seems to be empty.');
Please login to merge, or discard this patch.
lib/Phpfastcache/Core/Item/ItemExtendedTrait.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface;
19 19
 use Phpfastcache\Event\EventInterface;
20 20
 use Phpfastcache\Exceptions\{
21
-  PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidArgumentTypeException, PhpfastcacheLogicException
21
+    PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidArgumentTypeException, PhpfastcacheLogicException
22 22
 };
23 23
 
24 24
 /**
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -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,7 +459,7 @@  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 464
         return $info;
465 465
     }
Please login to merge, or discard this patch.
lib/Phpfastcache/Core/Item/ExtendedCacheItemInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface;
19 19
 use Phpfastcache\Event\EventInterface;
20 20
 use Phpfastcache\Exceptions\{
21
-  PhpfastcacheInvalidArgumentException, PhpfastcacheLogicException
21
+    PhpfastcacheInvalidArgumentException, PhpfastcacheLogicException
22 22
 };
23 23
 use Psr\Cache\CacheItemInterface;
24 24
 
Please login to merge, or discard this patch.
lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolTrait.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 use Phpfastcache\Core\Item\ExtendedCacheItemInterface;
19 19
 use Phpfastcache\Event\EventInterface;
20 20
 use Phpfastcache\Exceptions\{
21
-  PhpfastcacheInvalidArgumentException, PhpfastcacheLogicException
21
+    PhpfastcacheInvalidArgumentException, PhpfastcacheLogicException
22 22
 };
23 23
 use Psr\Cache\CacheItemInterface;
24 24
 
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function getItemsAsJsonString(array $keys = [], $option = 0, $depth = 512): string
38 38
     {
39
-        $callback = function (CacheItemInterface $item) {
39
+        $callback = function(CacheItemInterface $item) {
40 40
             return $item->get();
41 41
         };
42 42
         return \json_encode(\array_map($callback, \array_values($this->getItems($keys))), $option, $depth);
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         if (\is_string($tagName)) {
51 51
             $driverResponse = $this->getItem($this->getTagKey($tagName));
52 52
             if ($driverResponse->isHit()) {
53
-                $items = (array)$driverResponse->get();
53
+                $items = (array) $driverResponse->get();
54 54
 
55 55
                 /**
56 56
                  * getItems() may provides expired item(s)
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
                  *
63 63
                  * #headache
64 64
                  */
65
-                return \array_filter($this->getItems(\array_unique(\array_keys($items))), function (ExtendedCacheItemInterface $item) {
65
+                return \array_filter($this->getItems(\array_unique(\array_keys($items))), function(ExtendedCacheItemInterface $item) {
66 66
                     return $item->isHit();
67 67
                 });
68 68
             }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
         foreach ($items as $key => $item) {
101 101
             if (\array_diff($tagNames, $item->getTags())) {
102
-                unset($items[ $key ]);
102
+                unset($items[$key]);
103 103
             }
104 104
         }
105 105
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      */
113 113
     public function getItemsByTagsAsJsonString(array $tagNames, $option = 0, $depth = 512)
114 114
     {
115
-        $callback = function (CacheItemInterface $item) {
115
+        $callback = function(CacheItemInterface $item) {
116 116
             return $item->get();
117 117
         };
118 118
 
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
      */
384 384
     public function detachItem(CacheItemInterface $item)
385 385
     {
386
-        if (isset($this->itemInstances[ $item->getKey() ])) {
386
+        if (isset($this->itemInstances[$item->getKey()])) {
387 387
             $this->deregisterItem($item);
388 388
         }
389 389
     }
@@ -403,11 +403,11 @@  discard block
 block discarded – undo
403 403
      */
404 404
     public function attachItem(CacheItemInterface $item)
405 405
     {
406
-        if (isset($this->itemInstances[ $item->getKey() ]) && \spl_object_hash($item) !== \spl_object_hash($this->itemInstances[ $item->getKey() ])) {
406
+        if (isset($this->itemInstances[$item->getKey()]) && \spl_object_hash($item) !== \spl_object_hash($this->itemInstances[$item->getKey()])) {
407 407
             throw new PhpfastcacheLogicException('The item already exists and cannot be overwritten because the Spl object hash mismatches ! You probably tried to re-attach a detached item which has been already retrieved from cache.');
408 408
         }
409 409
 
410
-        $this->itemInstances[ $item->getKey() ] = $item;
410
+        $this->itemInstances[$item->getKey()] = $item;
411 411
     }
412 412
 
413 413
 
@@ -419,10 +419,10 @@  discard block
 block discarded – undo
419 419
     protected function deregisterItem($item)
420 420
     {
421 421
         if ($item instanceof CacheItemInterface) {
422
-            unset($this->itemInstances[ $item->getKey() ]);
422
+            unset($this->itemInstances[$item->getKey()]);
423 423
 
424 424
         } else if (\is_string($item)) {
425
-            unset($this->itemInstances[ $item ]);
425
+            unset($this->itemInstances[$item]);
426 426
         } else {
427 427
             throw new PhpfastcacheInvalidArgumentException('Invalid type for $item variable');
428 428
         }
@@ -449,8 +449,8 @@  discard block
 block discarded – undo
449 449
      */
450 450
     public function isAttached(CacheItemInterface $item)
451 451
     {
452
-        if (isset($this->itemInstances[ $item->getKey() ])) {
453
-            return \spl_object_hash($item) === \spl_object_hash($this->itemInstances[ $item->getKey() ]);
452
+        if (isset($this->itemInstances[$item->getKey()])) {
453
+            return \spl_object_hash($item) === \spl_object_hash($this->itemInstances[$item->getKey()]);
454 454
         }
455 455
         return null;
456 456
     }
@@ -473,8 +473,8 @@  discard block
 block discarded – undo
473 473
      */
474 474
     public function saveMultiple(...$items): bool
475 475
     {
476
-        if (isset($items[ 0 ]) && \is_array($items[ 0 ])) {
477
-            foreach ($items[ 0 ] as $item) {
476
+        if (isset($items[0]) && \is_array($items[0])) {
477
+            foreach ($items[0] as $item) {
478 478
                 $this->save($item);
479 479
             }
480 480
             return true;
Please login to merge, or discard this patch.
lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 use Phpfastcache\Entities\DriverStatistic;
22 22
 use Phpfastcache\Event\EventInterface;
23 23
 use Phpfastcache\Exceptions\{
24
-  PhpfastcacheInvalidArgumentException, PhpfastcacheLogicException
24
+    PhpfastcacheInvalidArgumentException, PhpfastcacheLogicException
25 25
 };
26 26
 use Psr\Cache\{CacheItemInterface, CacheItemPoolInterface};
27 27
 
Please login to merge, or discard this patch.
lib/Phpfastcache/Helper/ActOnAll.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 namespace Phpfastcache\Helper;
17 17
 
18 18
 use Phpfastcache\{
19
-  CacheManager, Event\EventInterface, EventManager
19
+    CacheManager, Event\EventInterface, EventManager
20 20
 };
21 21
 use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface;
22 22
 use Phpfastcache\Entities\DriverStatistic;
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function __construct()
41 41
     {
42
-        $this->instances =& CacheManager::getInternalInstances();
42
+        $this->instances = & CacheManager::getInternalInstances();
43 43
     }
44 44
 
45 45
     /**
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
      */
48 48
     protected function getGenericCallback(): \Closure
49 49
     {
50
-        return function ($method, $args) {
50
+        return function($method, $args) {
51 51
             $return = [];
52 52
             foreach ($this->instances as $instance) {
53 53
                 $reflectionMethod = new \ReflectionMethod(\get_class($instance), $method);
54
-                $return[ $instance->getDriverName() ] = $reflectionMethod->invokeArgs($instance, $args);
54
+                $return[$instance->getDriverName()] = $reflectionMethod->invokeArgs($instance, $args);
55 55
             }
56 56
             return $return;
57 57
         };
Please login to merge, or discard this patch.