use Silex\Application;
class UserController
{
private $app;
public function index ( Application $app )
{
$this -> app = $app;
return $this -> app['twig']->render('user.twig', array(
'user' => 1
));
}
}