You are here

public function InlineFragmentRenderer::getName in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php \Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer::getName()

Gets the name of the strategy.

Return value

string The strategy name

Overrides FragmentRendererInterface::getName

File

vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php, line 148

Class

InlineFragmentRenderer
Implements the inline rendering strategy where the Request is rendered by the current HTTP kernel.

Namespace

Symfony\Component\HttpKernel\Fragment

Code

public function getName() {
  return 'inline';
}