8000 [FrameworkBundle] Added configuration for additionnal request formats by gquemener · Pull Request #9862 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[FrameworkBundle] Added configuration for additionnal request formats #9862

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

Closed
wants to merge 9 commits into from
Prev Previous commit
Next Next commit
[HttpKernel] Fixed code standard
  • Loading branch information
gquemener committed Dec 31, 2013
commit 399b7c0740f4d61abcaffe806ba717819c35b0a6
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function __construct(array $formats)
}

/**
* Set additional request formats
* Set additional requests formats
*
* @param GetResponseEvent $event
*/
Expand All @@ -52,8 +52,6 @@ public function onKernelRequest(GetResponseEvent $event)
*/
public static function getSubscribedEvents()
{
return array(
KernelEvents::REQUEST => 'onKernelRequest',
);
return array(KernelEvents::REQUEST => 'onKernelRequest');
}
}
0