Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding support for controller input and method in an array with the n… #1730

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
code style 2
  • Loading branch information
Alexander committed May 25, 2020
commit e313d8a3e1605f7f6efe7944c58f99445e5d0e66
4 changes: 2 additions & 2 deletions src/Routing/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -510,9 +510,9 @@ protected function formatPrefix($new, $old)
*
* @param \Dingo\Api\Http\Request $request
*
* @return \Dingo\Api\Http\Response
* @throws \Exception
*
* @return \Dingo\Api\Http\Response
*/
public function dispatch(Request $request)
{
Expand Down Expand Up @@ -680,7 +680,7 @@ public function setCurrentRoute(Route $route)
*/
public function hasGroupStack()
{
return !empty($this->groupStack);
return ! empty($this->groupStack);
}

/**
Expand Down