14 lines
291 B
PHP
14 lines
291 B
PHP
|
<?php
|
||
|
|
||
|
namespace KekRozsak\FrontBundle\Controller;
|
||
|
|
||
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||
|
|
||
|
class DefaultController extends Controller
|
||
|
{
|
||
|
public function indexAction()
|
||
|
{
|
||
|
return $this->render('KekRozsakFrontBundle:Default:index.html.twig', array());
|
||
|
}
|
||
|
}
|