cs: Fix code-style.

This commit is contained in:
Pol Dellaiera
2021-12-21 12:13:20 +01:00
parent e2bc868495
commit 530ad497bc
12 changed files with 23 additions and 16 deletions

View File

@@ -85,7 +85,7 @@ class AccompanyingCourseCommentController extends AbstractController
return $this->render('@ChillPerson/AccompanyingCourse/comment_list.html.twig', [
'accompanyingCourse' => $accompanyingCourse,
'form' => $form->createView(),
'edit_form' => $editForm !== null ? $editForm->createView() : null,
'edit_form' => null !== $editForm ? $editForm->createView() : null,
'commentEditId' => $commentEditId ?? null,
]);
}