Completed
Push — master ( dc07f7...ef05ee )
by Eric
8s
created
src/Jarvis.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
 
157 157
     /**
158 158
      * @param  string  $eventName
159
-     * @param  mixed   $receiver
159
+     * @param  \Closure   $receiver
160 160
      * @param  integer $priority
161 161
      * @return self
162 162
      */
Please login to merge, or discard this patch.
src/Skill/Routing/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
 
75 75
             $value = (string) $value;
76 76
             $pieces = explode(':', $matches[1]);
77
-            if (1 < count($pieces) && 1 !== preg_match('~' . $pieces[1] . '~', $value)) {
77
+            if (1 < count($pieces) && 1 !== preg_match('~'.$pieces[1].'~', $value)) {
78 78
                 continue;
79 79
             }
80 80
 
Please login to merge, or discard this patch.