From aeaad243bc8017861e90dcdcbbf9f5f21c9ade49 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 12 Dec 2016 21:15:46 +0300 Subject: [PATCH] CommentFactory code quality fix. --- .../PointToolsBundle/Service/Factory/Blogs/CommentFactory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Skobkin/Bundle/PointToolsBundle/Service/Factory/Blogs/CommentFactory.php b/src/Skobkin/Bundle/PointToolsBundle/Service/Factory/Blogs/CommentFactory.php index b86b104..7f73412 100644 --- a/src/Skobkin/Bundle/PointToolsBundle/Service/Factory/Blogs/CommentFactory.php +++ b/src/Skobkin/Bundle/PointToolsBundle/Service/Factory/Blogs/CommentFactory.php @@ -35,10 +35,10 @@ class CommentFactory private $userFactory; /** - * @param EntityManagerInterface $em + * @param EntityManager $em * @param UserFactory $userFactory */ - public function __construct(EntityManagerInterface $em, UserFactory $userFactory) + public function __construct(EntityManager $em, UserFactory $userFactory) { $this->em = $em; $this->userFactory = $userFactory;