From 97dc750e085395e4af4037e53812cd75159e160a Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 12 Dec 2016 21:35:59 +0300 Subject: [PATCH] UserApi code quality fix. --- src/Skobkin/Bundle/PointToolsBundle/Service/UserApi.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Skobkin/Bundle/PointToolsBundle/Service/UserApi.php b/src/Skobkin/Bundle/PointToolsBundle/Service/UserApi.php index 9037978..544f742 100644 --- a/src/Skobkin/Bundle/PointToolsBundle/Service/UserApi.php +++ b/src/Skobkin/Bundle/PointToolsBundle/Service/UserApi.php @@ -3,7 +3,6 @@ namespace Skobkin\Bundle\PointToolsBundle\Service; use Doctrine\ORM\EntityManager; -use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityRepository; use Guzzle\Http\Exception\ClientErrorResponseException; use Guzzle\Service\Client; @@ -38,7 +37,7 @@ class UserApi extends AbstractApi protected $userRepository; - public function __construct(Client $httpClient, $https = true, $baseUrl = null, EntityManagerInterface $entityManager) + public function __construct(Client $httpClient, $https = true, $baseUrl = null, EntityManager $entityManager) { parent::__construct($httpClient, $https, $baseUrl);