for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the "Kata 1" package.
*
* Copyright (c) Daniel González
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
* @author Daniel González <[email protected]>
*/
namespace App\Controller;
use Component\Http\Response;
/**
* DefaultController.
class DefaultController extends AppController
{
* @return Response
public function indexAction()
return $this->render('Default\\index.html.twig');
}