We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeacda1 commit 27d2475Copy full SHA for 27d2475
src/Pecee/SimpleRouter/RouterResource.php
@@ -59,7 +59,7 @@ public function matchRoute(Request $request) {
59
$parameters = array_merge($this->parameters, $parameters);
60
}
61
62
- $action = $parameters['action'];
+ $action = isset($parameters['action']) ? $parameters['action'] : null;
63
unset($parameters['action']);
64
65
// Delete
0 commit comments