Completed
Push — master ( 6aee65...600e01 )
by Kirill
05:08
created
src/Route.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * This file is part of GitterApi package.
4 4
  *
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      */
145 145
     public function with(string $parameter, $value): Route
146 146
     {
147
-        $this->parameters[$parameter] = (string)$value;
147
+        $this->parameters[$parameter] = (string) $value;
148 148
 
149 149
         return $this;
150 150
     }
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
             $route = $updatedRoute;
211 211
         }
212 212
 
213
-        return $this->url . $route . '?' . http_build_query($query);
213
+        return $this->url.$route.'?'.http_build_query($query);
214 214
     }
215 215
 
216 216
     /**
Please login to merge, or discard this patch.