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 d9828fb commit 6b600bcCopy full SHA for 6b600bc
src/Controllers/BaseController.php
@@ -45,8 +45,8 @@ abstract class BaseController extends BaseRoutingController {
45
* @internal param array $parameters
46
*
47
*/
48
- public function dispatch($request) {
49
- $method_name = $request->method();
+ public function dispatcher($request) {
+ $method_name = $request->method();
50
51
if (in_array($method_name, $this->httpMethodNames)) {
52
@@ -67,7 +67,7 @@ public function dispatch($request) {
67
68
public function asView(Request $request) {
69
70
- return $this->dispatch($request);
+ return $this->dispatcher($request);
71
}
72
73
/**
0 commit comments