| author | ymh <ymh.work@gmail.com> |
| Wed, 28 Sep 2011 17:45:50 +0200 | |
| changeset 2 | 806e57d67020 |
| child 4 | 02eab39cf8c6 |
| permissions | -rw-r--r-- |
| 2 | 1 |
<?php |
2 |
||
3 |
namespace Company\BaseBundle\Controller; |
|
4 |
||
5 |
use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
|
6 |
||
7 |
||
8 |
class DefaultController extends Controller |
|
9 |
{ |
|
10 |
||
11 |
public function indexAction($name) |
|
12 |
{ |
|
13 |
return $this->render('CompanyBaseBundle:Default:index.html.twig', array('name' => $name)); |
|
14 |
} |
|
15 |
} |