From 221829c6fdffd2ecdb764cceea725b6c2cd9fdd4 Mon Sep 17 00:00:00 2001 From: Hugo Sales Date: Sat, 10 Oct 2020 20:05:16 +0000 Subject: [PATCH] [Reply] Fix missing use statement --- plugins/Reply/Reply.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/Reply/Reply.php b/plugins/Reply/Reply.php index 4e1071da67..e9909a9373 100644 --- a/plugins/Reply/Reply.php +++ b/plugins/Reply/Reply.php @@ -1,6 +1,7 @@ . + // }}} namespace Plugin\Reply; @@ -28,7 +30,7 @@ use App\Entity\Note; use App\Util\Common; use App\Util\Exceptiion\InvalidFormException; use App\Util\Exception\RedirectException; -use Componenet\Posting; +use Component\Posting\Posting; use Symfony\Component\Form\Extension\Core\Type\FileType; use Symfony\Component\Form\Extension\Core\Type\HiddenType; use Symfony\Component\Form\Extension\Core\Type\SubmitType;