revert typehint change
This commit is contained in:
parent
9cb17d2915
commit
79bf84e1ad
1 changed files with 4 additions and 4 deletions
|
@ -19,7 +19,7 @@
|
|||
|
||||
namespace Doctrine\ORM\Query\Filter;
|
||||
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
use Doctrine\ORM\EntityManager;
|
||||
use Doctrine\ORM\Mapping\ClassMetadata;
|
||||
use Doctrine\ORM\Query\ParameterTypeInferer;
|
||||
|
||||
|
@ -37,7 +37,7 @@ abstract class SQLFilter
|
|||
/**
|
||||
* The entity manager.
|
||||
*
|
||||
* @var EntityManagerInterface
|
||||
* @var EntityManager
|
||||
*/
|
||||
private $em;
|
||||
|
||||
|
@ -51,9 +51,9 @@ abstract class SQLFilter
|
|||
/**
|
||||
* Constructs the SQLFilter object.
|
||||
*
|
||||
* @param EntityManagerInterface $em The entity manager.
|
||||
* @param EntityManager $em The entity manager.
|
||||
*/
|
||||
final public function __construct(EntityManagerInterface $em)
|
||||
final public function __construct(EntityManager $em)
|
||||
{
|
||||
$this->em = $em;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue