File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
src/Symfony/Bridge/Doctrine/Form/ChoiceList Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 13
13
14
14
use Symfony \Component \Form \Exception \UnexpectedTypeException ;
15
15
use Doctrine \ORM \QueryBuilder ;
16
- use Doctrine \ORM \EntityManagerInterface ;
17
16
use Doctrine \DBAL \Connection ;
18
17
19
18
/**
@@ -34,13 +33,13 @@ class ORMQueryBuilderLoader implements EntityLoaderInterface
34
33
/**
35
34
* Construct an ORM Query Builder Loader
36
35
*
37
- * @param QueryBuilder|\Closure $queryBuilder
38
- * @param EntityManagerInterface $manager
39
- * @param string $class
36
+ * @param QueryBuilder|\Closure $queryBuilder
37
+ * @param EntityManager $manager
38
+ * @param string $class
40
39
*
41
40
* @throws UnexpectedTypeException
42
41
*/
43
- public function __construct ($ queryBuilder , EntityManagerInterface $ manager = null , $ class = null )
42
+ public function __construct ($ queryBuilder , $ manager = null , $ class = null )
44
43
{
45
44
// If a query builder was passed, it must be a closure or QueryBuilder
46
45
// instance
You can’t perform that action at this time.
0 commit comments