[HttpKernel] Fragment Fixed CS

This commit is contained in:
Giulio De Donato 2013-09-19 12:09:58 +02:00
parent 12c0b74eac
commit 7d53314b36

View File

@ -43,9 +43,10 @@ class FragmentHandler
* Constructor. * Constructor.
* *
* RequestStack will become required in 3.0. * RequestStack will become required in 3.0.
* *
* @param FragmentRendererInterface[] $renderers An array of FragmentRendererInterface instances * @param FragmentRendererInterface[] $renderers An array of FragmentRendererInterface instances
* @param Boolean $debug Whether the debug mode is enabled or not * @param Boolean $debug Whether the debug mode is enabled or not
* @param RequestStack|null $requestStack The Request stack that controls the lifecycle of requests
*/ */
public function __construct(array $renderers = array(), $debug = false, RequestStack $requestStack = null) public function __construct(array $renderers = array(), $debug = false, RequestStack $requestStack = null)
{ {
@ -97,7 +98,7 @@ class FragmentHandler
* @return string|null The Response content or null when the Response is streamed * @return string|null The Response content or null when the Response is streamed
* *
* @throws \InvalidArgumentException when the renderer does not exist * @throws \InvalidArgumentException when the renderer does not exist
* @throws \RuntimeException when the Response is not successful * @throws \LogicException when the Request is not successful
*/ */
public function render($uri, $renderer = 'inline', array $options = array()) public function render($uri, $renderer = 'inline', array $options = array())
{ {