Skip to content

Commit

Permalink
Merge pull request #9572 from phong-kt/master
Browse files Browse the repository at this point in the history
Fix wrong method name App::className
  • Loading branch information
markstory committed Oct 6, 2016
2 parents 99a27a4 + fa93e79 commit 1ece435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/ControllerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function create(Request $request, Response $response)
return $this->missingController($request);
}

$className = App::classname($pluginPath . $controller, $namespace, 'Controller');
$className = App::className($pluginPath . $controller, $namespace, 'Controller');
if (!$className) {
return $this->missingController($request);
}
Expand Down

0 comments on commit 1ece435

Please sign in to comment.