Skip to content

Commit 37071d4

Browse files
committed
minor #18577 Fix operator to assign the route name micro_kernel_trait.rst (IssamRaouf)
This PR was submitted for the 6.4 branch but it was merged into the 6.2 branch instead. Discussion ---------- Fix operator to assign the route name micro_kernel_trait.rst The operator to assign the route name should be ':' instead of "=" <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `6.x` for features of unreleased versions). --> Commits ------- 818f0e1 Update micro_kernel_trait.rst
2 parents 49888ee + 818f0e1 commit 37071d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configuration/micro_kernel_trait.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Next, create an ``index.php`` file that defines the kernel class and runs it:
5555
]);
5656
}
5757
58-
#[Route('/random/{limit}', name='random_number')]
58+
#[Route('/random/{limit}', name:'random_number')]
5959
public function randomNumber(int $limit): JsonResponse
6060
{
6161
return new JsonResponse([

0 commit comments

Comments
 (0)