Fix PHP CS Fixer: add blank line after class constants

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Serreau Jovann
2026-03-20 11:02:16 +01:00
parent c2169eb5e8
commit 563393c1df
2 changed files with 2 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ class AccountController extends AbstractController
{
private const BREADCRUMB_HOME = ['name' => 'Accueil', 'url' => '/'];
private const BREADCRUMB_ACCOUNT = ['name' => 'Mon compte', 'url' => '/mon-compte'];
#[Route('/mon-compte', name: 'app_account')]
public function index(Request $request, StripeService $stripeService, EntityManagerInterface $em): Response
{