<?php

namespace Offy\Bundle\OAuthServerBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;

class DefaultController extends Controller
{
    public function indexAction($name)
    {
        return $this->render('OffyOAuthServerBundle:Default:index.html.twig', array('name' => $name));
    }
}
