Test Failed
Push — develop ( 094777...91aeee )
by Freddie
01:48 queued 12s
created
src/Domain/Builders/AbstractBuilder.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
  * For the full copyright and license information, please view the LICENSE
28 28
  * file that was distributed with this source code.
29 29
  */
30
-H;
30
+h;
31 31
     }
32 32
 
33 33
     /**
Please login to merge, or discard this patch.
src/Domain/Validations/HeaderSyntaxValidation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     private function validateAllowedHeaders(): void
43 43
     {
44
-        $notAllowedHeaders = \array_filter($this->headers, fn ($header) => !\in_array($header, $this->allowedHeaders));
44
+        $notAllowedHeaders = \array_filter($this->headers, fn($header) => !\in_array($header, $this->allowedHeaders));
45 45
 
46 46
         if (!empty($notAllowedHeaders)) {
47 47
             throw new HeaderSyntaxValidationException('Unknow headers: ' . \implode(', ', $notAllowedHeaders));
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     {
53 53
         $requiredHeaders = \array_filter(
54 54
             $this->requiredHeaders,
55
-            fn ($required) => !\in_array($required, $this->headers)
55
+            fn($required) => !\in_array($required, $this->headers)
56 56
         );
57 57
 
58 58
         if (!empty($requiredHeaders)) {
Please login to merge, or discard this patch.