Files
phpcache-bundle/Controller/DefaultController.php
macintoshplus 5eab394b1c first commit
2015-07-21 23:18:42 +02:00

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));
}
}