for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* (c) Tomasz Kunicki <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace AppBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
* Class DefaultController
* @package AppBundle\Controller
class DefaultController extends Controller
{
* @Route("/", name="homepage")
public function indexAction()
return $this->render(
'default/index.html.twig',
array()
);
}