SubscriptionsManager code quality fix.
This commit is contained in:
parent
68440c8531
commit
f184bde6ad
|
@ -4,7 +4,6 @@ namespace Skobkin\Bundle\PointToolsBundle\Service;
|
|||
|
||||
|
||||
use Doctrine\ORM\EntityManager;
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
use Doctrine\ORM\QueryBuilder;
|
||||
use Skobkin\Bundle\PointToolsBundle\Entity\Subscription;
|
||||
use Skobkin\Bundle\PointToolsBundle\Entity\SubscriptionEvent;
|
||||
|
@ -19,7 +18,7 @@ class SubscriptionsManager
|
|||
|
||||
|
||||
// @todo Add logger
|
||||
public function __construct(EntityManagerInterface $entityManager)
|
||||
public function __construct(EntityManager $entityManager)
|
||||
{
|
||||
$this->em = $entityManager;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue