Passed
Push — master ( b0ffba...d5ae6f )
by Maxime
38s queued 10s
created
src/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
      */
110 110
     public function generatePath(array $params = []): string
111 111
     {
112
-        return preg_replace_callback('/\{(.*?)\}/', function ($m) use (&$params) {
112
+        return preg_replace_callback('/\{(.*?)\}/', function($m) use (&$params) {
113 113
             if (isset($params[$m[1]])) {
114 114
                 return $params[$m[1]];
115 115
             }
Please login to merge, or discard this patch.