Skip to content

Commit

Permalink
Update the base controller: App\Controllers\BaseController
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckyCyborg committed Jul 19, 2020
1 parent 62a25a4 commit 755839e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Controllers/BaseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ protected function initialize()
/**
* Execute an action on the controller.
*
* @param \Nova\Http\Request $request
* @param string $method
* @param array $params
* @param \Nova\Http\Request $request
* @return mixed
*/
public function callAction(Request $request, $method, array $parameters)
public function callAction($method, array $parameters, Request $request)
{
$this->request = $request;
$this->action = $method;
Expand Down

0 comments on commit 755839e

Please sign in to comment.