Skip to content

Commit 7e1a631

Browse files
committed
minor #1281 Fix CS (GromNaN)
This PR was merged into the main branch. Discussion ---------- Fix CS Commits ------- e5879b3 Fix CS
2 parents a7a975e + e5879b3 commit 7e1a631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Controller/BlogController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function postShow(Post $post): Response
9494
#[Route('/comment/{postSlug}/new', methods: ['POST'], name: 'comment_new')]
9595
#[IsGranted('IS_AUTHENTICATED_FULLY')]
9696
#[ParamConverter('post', options: ['mapping' => ['postSlug' => 'slug']])]
97-
public function commentNew(Request $request, Post $post, EventDispatcherInterface $eventDispatcher, EntityManagerInterface $entityManager): Response
97+
public function commentNew(Request $request, Post $post, EventDispatcherInterface $eventDispatcher, EntityManagerInterface $entityManager): Response
9898
{
9999
$comment = new Comment();
100100
$comment->setAuthor($this->getUser());

0 commit comments

Comments
 (0)