for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WowApps\SlackBotBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
class DefaultController extends Controller
{
/**
* @Route("/")
*/
public function indexAction()
return $this->render('WoWAppsSlackBotBundle:Default:index.html.twig');
}