Completed
Pull Request — master (#657)
by Guy
01:45
created
src/Matching/RouteMatcher/Match.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function offsetExists($offset)
51 51
     {
52
-        return is_callable([$this, 'get'.ucfirst($offset)]);
52
+        return is_callable([$this, 'get' . ucfirst($offset)]);
53 53
     }
54 54
 
55 55
     /**
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function offsetGet($offset)
59 59
     {
60
-        return call_user_func([$this, 'get'.ucfirst($offset)]);
60
+        return call_user_func([$this, 'get' . ucfirst($offset)]);
61 61
     }
62 62
 
63 63
     /**
Please login to merge, or discard this patch.