kristofvc/qa-test

View on GitHub
src/AppBundle/Controller/WrongController.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace AppBundle\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;

class DefaultController extends Controller {

    /**
     * @Route("/wrong", name="wrong_homepage")
     */
    public function indexAction() {
        if (true) return $this->render('default/index.html.twig');
    }
}