Passed
Pull Request — master (#63)
by Eugene
02:59
created
tests/Integration/MessagePack/MessagePackTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,10 +78,10 @@  discard block
 block discarded – undo
78 78
     public function testCustomType() : void
79 79
     {
80 80
         $client = ClientBuilder::createFromEnv()
81
-            ->setPackerPureFactory(static function () {
81
+            ->setPackerPureFactory(static function() {
82 82
                 return PurePacker::fromExtensions(new DateTimeExtension(42));
83 83
             })
84
-            ->setPackerPeclFactory(static function () {
84
+            ->setPackerPeclFactory(static function() {
85 85
                 return new PeclPacker(true);
86 86
             })
87 87
             ->build();
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     public function testDecimalType(string $decimalString) : void
112 112
     {
113 113
         $client = ClientBuilder::createFromEnv()
114
-            ->setPackerPureFactory(static function () {
114
+            ->setPackerPureFactory(static function() {
115 115
                 return PurePacker::fromExtensions(new DecimalExtension());
116 116
             })
117 117
             ->build();
Please login to merge, or discard this patch.