From 34fc7c9e21cc0ba21c02bfa9090e67fdb0b56093 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 12 Dec 2016 21:25:41 +0300 Subject: [PATCH] UserFactory code quality fix. --- .../Bundle/PointToolsBundle/Service/Factory/UserFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Skobkin/Bundle/PointToolsBundle/Service/Factory/UserFactory.php b/src/Skobkin/Bundle/PointToolsBundle/Service/Factory/UserFactory.php index 1ff3e6c..a14dfdb 100644 --- a/src/Skobkin/Bundle/PointToolsBundle/Service/Factory/UserFactory.php +++ b/src/Skobkin/Bundle/PointToolsBundle/Service/Factory/UserFactory.php @@ -27,7 +27,7 @@ class UserFactory /** * @param EntityManager $em */ - public function __construct(EntityManagerInterface $em) + public function __construct(EntityManager $em) { $this->em = $em; $this->userRepository = $em->getRepository('SkobkinPointToolsBundle:User');