mirror of
https://github.com/Mactronique/phpcache-bundle.git
synced 2026-03-25 17:32:14 +01:00
14 lines
328 B
PHP
14 lines
328 B
PHP
<?php
|
|
|
|
namespace Mactronique\Bundle\PhpCacheBundle\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
|
|
class DefaultController extends Controller
|
|
{
|
|
public function indexAction($name)
|
|
{
|
|
return $this->render('MactroniquePhpCacheBundle:Default:index.html.twig', array('name' => $name));
|
|
}
|
|
}
|