for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Response;
class ShopController extends Controller
{
/**
* @Route("/shop", name="guilds")
* @Route("/users/{code}", name="users")
* @Route("/users", name="users2")
* @Route("/characters", name="users2")
*/
public function index()
// replace this line with your own code!
return $this->render('shop/index.html.twig', [
]);
}