Passed
Push — v7 ( d0ef53...e507a8 )
by Georges
01:44
created
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/Core/Pool/IO/IOHelperTrait.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
         {
57 57
             $securityKey = $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.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -194,9 +194,9 @@  discard block
 block discarded – undo
194 194
     protected static function cleanFileName($filename): string
195 195
     {
196 196
         $regex = [
197
-          '/[\?\[\]\/\\\=\<\>\:\;\,\'\"\&\$\#\*\(\)\|\~\`\!\{\}]/',
198
-          '/\.$/',
199
-          '/^\./',
197
+            '/[\?\[\]\/\\\=\<\>\:\;\,\'\"\&\$\#\*\(\)\|\~\`\!\{\}]/',
198
+            '/\.$/',
199
+            '/^\./',
200 200
         ];
201 201
         $replace = ['-', '', ''];
202 202
 
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
             $tmpFilename = Directory::getAbsolutePath(\dirname($file) . '/tmp_' . $this->getConfig()->getDefaultFileNameHashFunction()(
293 293
                 \str_shuffle(\uniqid($this->getDriverName(), false))
294 294
                 . \str_shuffle(\uniqid($this->getDriverName(), false))
295
-              ));
295
+                ));
296 296
 
297 297
             $f = \fopen($tmpFilename, 'w+');
298 298
             \flock($f, \LOCK_EX);
@@ -334,11 +334,11 @@  discard block
 block discarded – undo
334 334
         }
335 335
 
336 336
         $stat->setData(\implode(', ', \array_keys($this->itemInstances)))
337
-          ->setRawData([
337
+            ->setRawData([
338 338
             'tmp' => $this->tmp,
339
-          ])
340
-          ->setSize(Directory::dirSize($path))
341
-          ->setInfo('Number of files used to build the cache: ' . Directory::getFileCount($path));
339
+            ])
340
+            ->setSize(Directory::dirSize($path))
341
+            ->setInfo('Number of files used to build the cache: ' . Directory::getFileCount($path));
342 342
 
343 343
         return $stat;
344 344
     }
Please login to merge, or discard this patch.
lib/Phpfastcache/Helper/CacheConditionalHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
         if (!$cacheItem->isHit()) {
51 51
             $cacheItem->set($callback());
52
-            if($expiresAfter){
52
+            if ($expiresAfter) {
53 53
                 $cacheItem->expiresAfter($expiresAfter);
54 54
             }
55 55
             $this->cacheInstance->save($cacheItem);
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.
lib/Phpfastcache/Api.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -64,32 +64,32 @@  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
             $command = 'git -C "' . __DIR__ . '" describe --abbrev=0 --tags';
73 73
             $stdout = shell_exec($command);
74
-            if(\is_string($stdout)){
74
+            if (\is_string($stdout)) {
75 75
                 $version = \trim($stdout);
76 76
                 return $version;
77 77
             }
78
-            if(!$fallbackOnChangelog){
78
+            if (!$fallbackOnChangelog) {
79 79
                 throw new PhpfastcacheLogicException('The git command used to retrieve the PhpFastCache version has failed.');
80 80
             }
81 81
         }
82 82
 
83
-        if(!$fallbackOnChangelog){
83
+        if (!$fallbackOnChangelog) {
84 84
             throw new PhpfastcacheLogicException('shell_exec is disabled therefore the PhpFastCache version cannot be retrieved.');
85 85
         }
86 86
 
87 87
         $changelogFilename = __DIR__ . '/../../CHANGELOG.md';
88
-        if(\file_exists($changelogFilename)){
88
+        if (\file_exists($changelogFilename)) {
89 89
             $versionPrefix = '## ';
90 90
             $changelog = \explode("\n", self::getPhpFastCacheChangelog());
91
-            foreach ($changelog as $line){
92
-                if(\strpos($line, $versionPrefix) === 0){
91
+            foreach ($changelog as $line) {
92
+                if (\strpos($line, $versionPrefix) === 0) {
93 93
                     $version = \trim(\str_replace($versionPrefix, '', $line));
94 94
                     return $version;
95 95
                 }
@@ -107,13 +107,13 @@  discard block
 block discarded – undo
107 107
     {
108 108
         static $hash;
109 109
 
110
-        if($hash && $cacheable){
110
+        if ($hash && $cacheable) {
111 111
             return $hash;
112 112
         }
113 113
 
114
-        if(\function_exists('shell_exec')){
114
+        if (\function_exists('shell_exec')) {
115 115
             $stdout = \shell_exec('git rev-parse --short HEAD');
116
-            if(\is_string($stdout)){
116
+            if (\is_string($stdout)) {
117 117
                 $hash = \trim($stdout);
118 118
                 return "#{$hash}";
119 119
             }
@@ -131,9 +131,9 @@  discard block
 block discarded – undo
131 131
     public static function getChangelog(): string
132 132
     {
133 133
         $changelogFilename = __DIR__ . '/../../CHANGELOG_API.md';
134
-        if(\file_exists($changelogFilename)){
134
+        if (\file_exists($changelogFilename)) {
135 135
             $string = \str_replace(["\r\n", "\r"], "\n", \trim(\file_get_contents($changelogFilename)));
136
-            if($string){
136
+            if ($string) {
137 137
                 return $string;
138 138
             }
139 139
             throw new PhpfastcacheLogicException('Unable to retrieve the PhpFastCache API changelog as it seems to be empty.');
@@ -150,9 +150,9 @@  discard block
 block discarded – undo
150 150
     public static function getPhpFastCacheChangelog(): string
151 151
     {
152 152
         $changelogFilename = __DIR__ . '/../../CHANGELOG.md';
153
-        if(\file_exists($changelogFilename)){
153
+        if (\file_exists($changelogFilename)) {
154 154
             $string = \str_replace(["\r\n", "\r"], "\n", \trim(\file_get_contents($changelogFilename)));
155
-            if($string){
155
+            if ($string) {
156 156
                 return $string;
157 157
             }
158 158
             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/Drivers/Predis/Config.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -115,10 +115,10 @@
 block discarded – undo
115 115
     public function getPredisConfigArray(): array
116 116
     {
117 117
         return [
118
-          'host' => $this->getHost(),
119
-          'port' => $this->getPort(),
120
-          'password' => $this->getPassword() ?: null,
121
-          'database' => $this->getDatabase(),
118
+            'host' => $this->getHost(),
119
+            'port' => $this->getPort(),
120
+            'password' => $this->getPassword() ?: null,
121
+            'database' => $this->getDatabase(),
122 122
         ];
123 123
     }
124 124
 
Please login to merge, or discard this patch.