Passed
Pull Request — master (#62)
by Eugene
12:23 queued 08:14
created
src/Packer/PeclPacker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         }
51 51
 
52 52
         return new Response($unpacker->data(),
53
-            static function () use ($unpacker) {
53
+            static function() use ($unpacker) {
54 54
                 if (!$unpacker->execute()) {
55 55
                     throw new \UnexpectedValueException('Unable to unpack response body.');
56 56
                 }
Please login to merge, or discard this patch.
src/Packer/PurePacker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         $unpacker = $this->unpacker->withBuffer($data);
49 49
 
50 50
         return new Response($unpacker->unpackMap(),
51
-            static function () use ($unpacker) {
51
+            static function() use ($unpacker) {
52 52
                 return $unpacker->unpackMap();
53 53
             }
54 54
         );
Please login to merge, or discard this patch.