Passed
Push — 3.0 ( 999ef2 )
by Zaahid
09:22
created
Category
src/Header/MimeEncodedHeader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     protected function parseHeaderValue(AbstractConsumerService $consumer, string $value) : AbstractHeader
43 43
     {
44
-        $matchp = '~' . MimeLiteralPart::MIME_PART_PATTERN . '~';
44
+        $matchp = '~'.MimeLiteralPart::MIME_PART_PATTERN.'~';
45 45
         $rep = \preg_replace_callback($matchp, function($matches) {
46 46
             return $this->mimeLiteralPartFactory->newInstance($matches[0])->getValue();
47 47
         }, $value);
Please login to merge, or discard this patch.
src/Container/AutoServiceContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             return $ref->newInstanceArgs($ap);
73 73
         };
74 74
         foreach ($this->globalExtensions as $ext) {
75
-            $fn = function ($c) use ($ext, $fn) {
75
+            $fn = function($c) use ($ext, $fn) {
76 76
                 return $ext($fn($c), $c);
77 77
             };
78 78
         }
Please login to merge, or discard this patch.
src/ErrorBag.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         }
81 81
         return \array_values(\array_filter(
82 82
             $this->errors,
83
-            function ($e) use ($minPsrLevel) {
83
+            function($e) use ($minPsrLevel) {
84 84
                 return $e->isPsrLevelGreaterOrEqualTo($minPsrLevel);
85 85
             }
86 86
         ));
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     public function getAllErrors(bool $validate = false, string $minPsrLevel = LogLevel::ERROR) : array
95 95
     {
96 96
         $arr = \array_values(\array_map(
97
-            function ($e) use ($validate, $minPsrLevel) {
97
+            function($e) use ($validate, $minPsrLevel) {
98 98
                 return $e->getAllErrors($validate, $minPsrLevel) ?? [];
99 99
             },
100 100
             $this->getErrorBagChildren()
Please login to merge, or discard this patch.