Passed
Pull Request — master (#26)
by
unknown
02:52
created
src/Model/Order/Configuration.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     /**
31 31
      * @var array $allowedCountries
32 32
      */
33
-	private array $allowedCountries = array('IT', 'ES', 'PT', 'FR');
33
+    private array $allowedCountries = array('IT', 'ES', 'PT', 'FR');
34 34
 
35 35
     /**
36 36
      * Configuration constructor.
Please login to merge, or discard this patch.
src/Exception/HttpException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             $statusPhrase = $this->status[$statusCode];
67 67
         }
68 68
         parent::__construct($statusPhrase, $statusCode);
69
-        $header  = sprintf('HTTP/1.1 %d %s', $statusCode, $statusPhrase);
69
+        $header = sprintf('HTTP/1.1 %d %s', $statusCode, $statusPhrase);
70 70
         $this->addHeader($header);
71 71
         $this->addHeaders($headers);
72 72
     }
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     {
103 103
         foreach ($headers as $key => $header) {
104 104
             if (!is_int($key)) {
105
-                $header = $key.': '.$header;
105
+                $header = $key . ': ' . $header;
106 106
             }
107 107
 
108 108
             $this->addHeader($header);
Please login to merge, or discard this patch.