Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\HttpKernel\Fragment; Chris@0: Chris@0: /** Chris@0: * Implements the SSI rendering strategy. Chris@0: * Chris@0: * @author Sebastian Krebs Chris@0: */ Chris@0: class SsiFragmentRenderer extends AbstractSurrogateFragmentRenderer Chris@0: { Chris@0: /** Chris@0: * {@inheritdoc} Chris@0: */ Chris@0: public function getName() Chris@0: { Chris@0: return 'ssi'; Chris@0: } Chris@0: }