comparison vendor/symfony/http-kernel/Fragment/FragmentRendererInterface.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
10 */ 10 */
11 11
12 namespace Symfony\Component\HttpKernel\Fragment; 12 namespace Symfony\Component\HttpKernel\Fragment;
13 13
14 use Symfony\Component\HttpFoundation\Request; 14 use Symfony\Component\HttpFoundation\Request;
15 use Symfony\Component\HttpFoundation\Response;
15 use Symfony\Component\HttpKernel\Controller\ControllerReference; 16 use Symfony\Component\HttpKernel\Controller\ControllerReference;
16 use Symfony\Component\HttpFoundation\Response;
17 17
18 /** 18 /**
19 * Interface implemented by all rendering strategies. 19 * Interface implemented by all rendering strategies.
20 * 20 *
21 * @author Fabien Potencier <fabien@symfony.com> 21 * @author Fabien Potencier <fabien@symfony.com>
29 * @param Request $request A Request instance 29 * @param Request $request A Request instance
30 * @param array $options An array of options 30 * @param array $options An array of options
31 * 31 *
32 * @return Response A Response instance 32 * @return Response A Response instance
33 */ 33 */
34 public function render($uri, Request $request, array $options = array()); 34 public function render($uri, Request $request, array $options = []);
35 35
36 /** 36 /**
37 * Gets the name of the strategy. 37 * Gets the name of the strategy.
38 * 38 *
39 * @return string The strategy name 39 * @return string The strategy name