Completed
Push — master ( bc005d...8b71eb )
by Maik
07:09
created
src/Generics/Util/BasicAuth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
         }
97 97
 
98 98
         $httpStatus = new HttpStatus(401, '1.0');
99
-        header('WWW-Authenticate: Basic realm=' . $this->realm);
99
+        header('WWW-Authenticate: Basic realm='.$this->realm);
100 100
         header(sprintf('HTTP/%s', $httpStatus));
101 101
         echo "Forbidden!";
102 102
         return false;
Please login to merge, or discard this patch.
src/Generics/Util/Interpolator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
         if ($context !== null) {
32 32
             foreach ($context as $key => $val) {
33
-                $replace['{' . $key . '}'] = $val;
33
+                $replace['{'.$key.'}'] = $val;
34 34
             }
35 35
         }
36 36
 
Please login to merge, or discard this patch.