Skip to content

Commit e5879b3

Browse files
committed
Fix CS
1 parent a7a975e commit e5879b3

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)