Test Failed
Push — master ( cd42b5...841446 )
by
unknown
16:44 queued 06:09
created
files/php/lib/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * @var int
31 31
      */
32
-    protected $port = 8091;// SSL: 18091
32
+    protected $port = 8091; // SSL: 18091
33 33
 
34 34
     /**
35 35
      * @var string
Please login to merge, or discard this patch.
files/php/lib/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Driver.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
          */
165 165
         if ($item instanceof Item) {
166 166
             try {
167
-                return (bool)$this->getBucket()->upsert(
167
+                return (bool) $this->getBucket()->upsert(
168 168
                     $item->getEncodedKey(),
169 169
                     $this->encodeDocument($this->driverPreWrap($item)),
170 170
                     ['expiry' => $item->getTtl()]
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
          */
190 190
         if ($item instanceof Item) {
191 191
             try {
192
-                return (bool)$this->getBucket()->remove($item->getEncodedKey());
192
+                return (bool) $this->getBucket()->remove($item->getEncodedKey());
193 193
             } catch (Exception $e) {
194 194
                 return $e->getCode() === COUCHBASE_KEY_ENOENT;
195 195
             }
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
         $data[ExtendedCacheItemPoolInterface::DRIVER_DATA_WRAPPER_INDEX] = $this->encode($data[ExtendedCacheItemPoolInterface::DRIVER_DATA_WRAPPER_INDEX]);
208 208
         $data[ExtendedCacheItemPoolInterface::DRIVER_EDATE_WRAPPER_INDEX] = $data[ExtendedCacheItemPoolInterface::DRIVER_EDATE_WRAPPER_INDEX]->format(\DateTime::ATOM);
209 209
 
210
-        if($this->getConfig()->isItemDetailedDate()){
210
+        if ($this->getConfig()->isItemDetailedDate()) {
211 211
             $data[ExtendedCacheItemPoolInterface::DRIVER_CDATE_WRAPPER_INDEX] = $data[ExtendedCacheItemPoolInterface::DRIVER_CDATE_WRAPPER_INDEX]->format(\DateTime::ATOM);
212 212
             $data[ExtendedCacheItemPoolInterface::DRIVER_MDATE_WRAPPER_INDEX] = $data[ExtendedCacheItemPoolInterface::DRIVER_MDATE_WRAPPER_INDEX]->format(\DateTime::ATOM);
213 213
         }
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
             $data[ExtendedCacheItemPoolInterface::DRIVER_EDATE_WRAPPER_INDEX]
228 228
         );
229 229
 
230
-        if($this->getConfig()->isItemDetailedDate()){
230
+        if ($this->getConfig()->isItemDetailedDate()) {
231 231
             $data[ExtendedCacheItemPoolInterface::DRIVER_CDATE_WRAPPER_INDEX] = \DateTime::createFromFormat(
232 232
                 \DateTime::ATOM,
233 233
                 $data[ExtendedCacheItemPoolInterface::DRIVER_CDATE_WRAPPER_INDEX]
Please login to merge, or discard this patch.
files/php/lib/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Driver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
          * Check for Cross-Driver type confusion
82 82
          */
83 83
         if ($item instanceof Item) {
84
-            return (bool)$this->instance->set($item->getKey(), $this->encode($this->driverPreWrap($item)));
84
+            return (bool) $this->instance->set($item->getKey(), $this->encode($this->driverPreWrap($item)));
85 85
         }
86 86
 
87 87
         throw new PhpfastcacheInvalidArgumentException('Cross-Driver type confusion detected');
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
             $this->instance->close();
114 114
             $this->instance = null;
115 115
         }
116
-        $result = (bool)LeveldbClient::destroy($this->getLeveldbFile());
116
+        $result = (bool) LeveldbClient::destroy($this->getLeveldbFile());
117 117
         $this->driverConnect();
118 118
 
119 119
         return $result;
Please login to merge, or discard this patch.
files/php/lib/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
                 throw new PhpfastcacheInvalidConfigurationException('Path must be a valid string in "$server" configuration array if host is not defined');
133 133
             }
134 134
 
135
-            if (!empty($server['host']) && (empty($server['port']) || !is_int($server['port'])|| $server['port'] < 1)) {
135
+            if (!empty($server['host']) && (empty($server['port']) || !is_int($server['port']) || $server['port'] < 1)) {
136 136
                 throw new PhpfastcacheInvalidConfigurationException('Port must be a valid integer in "$server" configuration array');
137 137
             }
138 138
 
Please login to merge, or discard this patch.
files/php/lib/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Driver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
             ->setData(implode(', ', array_keys($this->itemInstances)))
79 79
             ->setInfo(sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats['version'], $date->format(DATE_RFC2822)))
80 80
             ->setRawData($stats)
81
-            ->setSize((int)$stats['bytes']);
81
+            ->setSize((int) $stats['bytes']);
82 82
     }
83 83
 
84 84
     /**
Please login to merge, or discard this patch.
files/php/lib/phpfastcache/lib/Phpfastcache/Drivers/Redis/Driver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         return (new DriverStatistic())
56 56
             ->setData(implode(', ', array_keys($this->itemInstances)))
57 57
             ->setRawData($info)
58
-            ->setSize((int)$info['used_memory'])
58
+            ->setSize((int) $info['used_memory'])
59 59
             ->setInfo(
60 60
                 sprintf(
61 61
                     "The Redis daemon v%s is up since %s.\n For more information see RawData. \n Driver size includes the memory allocation size.",
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
          * Check for Cross-Driver type confusion
170 170
          */
171 171
         if ($item instanceof Item) {
172
-            return (bool)$this->instance->del($item->getKey());
172
+            return (bool) $this->instance->del($item->getKey());
173 173
         }
174 174
 
175 175
         throw new PhpfastcacheInvalidArgumentException('Cross-Driver type confusion detected');
Please login to merge, or discard this patch.
files/php/lib/phpfastcache/lib/Phpfastcache/Drivers/Predis/Driver.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         return (new DriverStatistic())
76 76
             ->setData(implode(', ', array_keys($this->itemInstances)))
77 77
             ->setRawData($info)
78
-            ->setSize((int)$size)
78
+            ->setSize((int) $size)
79 79
             ->setInfo(
80 80
                 sprintf(
81 81
                     "The Redis daemon v%s is up since %s.\n For more information see RawData. \n Driver size includes the memory allocation size.",
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
              * @see https://redis.io/commands/expire
173 173
              */
174 174
             if ($ttl <= 0) {
175
-                return (bool)$this->instance->expire($item->getKey(), 0);
175
+                return (bool) $this->instance->expire($item->getKey(), 0);
176 176
             }
177 177
 
178 178
             return $this->instance->setex($item->getKey(), $ttl, $this->encode($this->driverPreWrap($item)))->getPayload() === 'OK';
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
          * Check for Cross-Driver type confusion
199 199
          */
200 200
         if ($item instanceof Item) {
201
-            return (bool)$this->instance->del([$item->getKey()]);
201
+            return (bool) $this->instance->del([$item->getKey()]);
202 202
         }
203 203
 
204 204
         throw new PhpfastcacheInvalidArgumentException('Cross-Driver type confusion detected');
Please login to merge, or discard this patch.
files/php/lib/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Driver.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -246,7 +246,7 @@
 block discarded – undo
246 246
     protected function driverClear(): bool
247 247
     {
248 248
         try {
249
-           return $this->collection->deleteMany([])->isAcknowledged();
249
+            return $this->collection->deleteMany([])->isAcknowledged();
250 250
         } catch (MongoDBException $e) {
251 251
             throw new PhpfastcacheDriverException('Got error while trying to empty the collection: ' . $e->getMessage(), 0, $e);
252 252
         }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
             )
96 96
         )->toArray()[0];
97 97
 
98
-        $array_filter_recursive = static function ($array, callable $callback = null) use (&$array_filter_recursive) {
98
+        $array_filter_recursive = static function($array, callable $callback = null) use (&$array_filter_recursive) {
99 99
             $array = $callback($array);
100 100
 
101 101
             if (\is_object($array) || \is_array($array)) {
@@ -107,12 +107,12 @@  discard block
 block discarded – undo
107 107
             return $array;
108 108
         };
109 109
 
110
-        $callback = static function ($item) {
110
+        $callback = static function($item) {
111 111
             /**
112 112
              * Remove unserializable properties
113 113
              */
114 114
             if ($item instanceof UTCDateTime) {
115
-                return (string)$item;
115
+                return (string) $item;
116 116
             }
117 117
             return $item;
118 118
         };
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
                         self::DRIVER_CDATE_WRAPPER_INDEX =>  new UTCDateTime($item->getCreationDate()),
202 202
                     ];
203 203
                 }
204
-                $result = (array)$this->getCollection()->updateOne(
204
+                $result = (array) $this->getCollection()->updateOne(
205 205
                     ['_id' => $this->getMongoDbItemKey($item)],
206 206
                     [
207 207
                         '$set' => $set,
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
             $this->database->selectCollection($collectionName)
282 282
                 ->createIndex(
283 283
                     [self::DRIVER_EDATE_WRAPPER_INDEX => 1],
284
-                    ['expireAfterSeconds' => 0,  'name' => 'auto_expire_index']
284
+                    ['expireAfterSeconds' => 0, 'name' => 'auto_expire_index']
285 285
                 );
286 286
         }
287 287
 
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
         if (count($servers) > 0) {
312 312
             $host = array_reduce(
313 313
                 $servers,
314
-                static function ($carry, $data) {
314
+                static function($carry, $data) {
315 315
                     $carry .= ($carry === '' ? '' : ',') . $data['host'] . ':' . $data['port'];
316 316
                     return $carry;
317 317
                 },
Please login to merge, or discard this patch.
files/php/lib/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Driver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             /**
82 82
              * CouchbaseBucket::get() returns a GetResult interface
83 83
              */
84
-            return $this->decodeDocument((array)$this->getCollection()->get($item->getEncodedKey())->content());
84
+            return $this->decodeDocument((array) $this->getCollection()->get($item->getEncodedKey())->content());
85 85
         } catch (DocumentNotFoundException $e) {
86 86
             return null;
87 87
         }
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
             ->setSize(0)
162 162
             ->setRawData($info)
163 163
             ->setData(implode(', ', array_keys($this->itemInstances)))
164
-            ->setInfo( $info['sdk'] . "\n For more information see RawData.");
164
+            ->setInfo($info['sdk'] . "\n For more information see RawData.");
165 165
     }
166 166
 
167 167
     /**
Please login to merge, or discard this patch.