1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Symfony\Bundle\FrameworkBundle\Controller;
- use Symfony\Bundle\FrameworkBundle\Controller\Controller;
- use Symfony\Component\HttpFoundation\Response;
- /*
- * This file is part of the Symfony framework.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- /**
- * TemplateController.
- *
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- */
- class TemplateController extends Controller
- {
- /**
- * Renders a template.
- *
- * @param string $template The template name
- *
- * @return Response A Response instance
- */
- public function templateAction($template)
- {
- return $this['templating']->renderResponse($template);
- }
- }
|