profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

Route Annotations Priority

Description

Defines rouuting priority, defaults to 0

Syntax

use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;

class MyController extends AbstractController
{
    /**
     * @Route("/{some_parameter}", name="route1")
     */
    public function someMethod(): Response
    {
        // ...
    }

    /**
     * @Route("/foo", priority=10, name="route2")
     */
    public function anotherMethod(): Response
    {
        // ...
    }
}