Passed
Push — master ( c94b6d...d25cd5 )
by Nikolaos
02:58
created
src/Storage/Adapter/Stream.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
      */
257 257
     public function set(string $key, $value, $ttl = null): bool
258 258
     {
259
-        $payload   = [
259
+        $payload = [
260 260
             "created" => time(),
261 261
             "ttl"     => $this->getTtl($ttl),
262 262
             "content" => $this->getSerializedData($value),
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
         }
337 337
 
338 338
         set_error_handler(
339
-            function () use (&$warning) {
339
+            function() use (&$warning) {
340 340
                 $warning = true;
341 341
             },
342 342
             E_NOTICE
Please login to merge, or discard this patch.
src/Storage/Serializer/Igbinary.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     {
53 53
         $warning = false;
54 54
         set_error_handler(
55
-            function () use (&$warning) {
55
+            function() use (&$warning) {
56 56
                 $warning = true;
57 57
             },
58 58
             E_WARNING
Please login to merge, or discard this patch.
src/Storage/Serializer/Php.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
             $warning = false;
59 59
             set_error_handler(
60
-                function () use (&$warning) {
60
+                function() use (&$warning) {
61 61
                     $warning = true;
62 62
                 },
63 63
                 E_NOTICE
Please login to merge, or discard this patch.
src/Storage/Serializer/Msgpack.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     {
53 53
         $warning = false;
54 54
         set_error_handler(
55
-            function () use (&$warning) {
55
+            function() use (&$warning) {
56 56
                 $warning = true;
57 57
             },
58 58
             E_WARNING
Please login to merge, or discard this patch.