Completed
Pull Request — 2.5 (#7639)
by
unknown
03:04
created
lib/Doctrine/ORM/Cache/DefaultEntityHydrator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 namespace Doctrine\ORM\Cache;
22 22
 
23 23
 use Doctrine\Common\Util\ClassUtils;
24
-
25 24
 use Doctrine\ORM\Query;
26 25
 use Doctrine\ORM\Mapping\ClassMetadata;
27 26
 use Doctrine\ORM\EntityManagerInterface;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Cache/Persister/Entity/AbstractEntityPersister.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@
 block discarded – undo
31 31
 use Doctrine\ORM\PersistentCollection;
32 32
 use Doctrine\ORM\EntityManagerInterface;
33 33
 use Doctrine\ORM\Persisters\Entity\EntityPersister;
34
-
35 34
 use Doctrine\Common\Util\ClassUtils;
36 35
 use Doctrine\Common\Collections\Criteria;
37 36
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/EntityRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
 use Doctrine\Common\Persistence\ObjectRepository;
25 25
 use Doctrine\Common\Collections\Selectable;
26 26
 use Doctrine\Common\Collections\Criteria;
27
-use Doctrine\Common\Collections\ArrayCollection;
28 27
 
29 28
 /**
30 29
  * An EntityRepository serves as a repository for entities with generic as well as
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -24,9 +24,6 @@
 block discarded – undo
24 24
 use Doctrine\ORM\Mapping\ClassMetadata;
25 25
 use Doctrine\ORM\PersistentCollection;
26 26
 use Doctrine\ORM\Query;
27
-use Doctrine\ORM\Events;
28
-use Doctrine\ORM\Event\LifecycleEventArgs;
29
-use Doctrine\ORM\Event\PostLoadEventDispatcher;
30 27
 use Doctrine\Common\Collections\ArrayCollection;
31 28
 use Doctrine\ORM\Proxy\Proxy;
32 29
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 namespace Doctrine\ORM\Internal\Hydration;
21 21
 
22 22
 use PDO;
23
-use Doctrine\DBAL\Types\Type;
24 23
 use Doctrine\ORM\Mapping\ClassMetadata;
25 24
 use Doctrine\ORM\Query;
26 25
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Persisters/Entity/JoinedSubclassPersister.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -20,11 +20,8 @@
 block discarded – undo
20 20
 namespace Doctrine\ORM\Persisters\Entity;
21 21
 
22 22
 use Doctrine\ORM\Mapping\ClassMetadata;
23
-use Doctrine\ORM\Query\ResultSetMapping;
24
-
25 23
 use Doctrine\DBAL\LockMode;
26 24
 use Doctrine\DBAL\Types\Type;
27
-
28 25
 use Doctrine\Common\Collections\Criteria;
29 26
 use Doctrine\ORM\Utility\PersisterHelper;
30 27
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/QueryExpressionVisitor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 namespace Doctrine\ORM\Query;
21 21
 
22 22
 use Doctrine\Common\Collections\ArrayCollection;
23
-
24 23
 use Doctrine\Common\Collections\Expr\ExpressionVisitor;
25 24
 use Doctrine\Common\Collections\Expr\Comparison;
26 25
 use Doctrine\Common\Collections\Expr\CompositeExpression;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/QueryBuilder.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 
22 22
 use Doctrine\Common\Collections\ArrayCollection;
23 23
 use Doctrine\Common\Collections\Criteria;
24
-
25 24
 use Doctrine\ORM\Query\Expr;
26 25
 use Doctrine\ORM\Query\QueryExpressionVisitor;
27 26
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Pagination/LimitSubqueryOutputWalker.php 1 patch
Unused Use Statements   -9 removed lines patch added patch discarded remove patch
@@ -18,18 +18,9 @@
 block discarded – undo
18 18
 use Doctrine\DBAL\Platforms\PostgreSqlPlatform;
19 19
 use Doctrine\DBAL\Platforms\SQLAnywherePlatform;
20 20
 use Doctrine\DBAL\Platforms\SQLServerPlatform;
21
-use Doctrine\ORM\Query\AST\ArithmeticExpression;
22
-use Doctrine\ORM\Query\AST\ArithmeticFactor;
23
-use Doctrine\ORM\Query\AST\ArithmeticTerm;
24
-use Doctrine\ORM\Query\AST\Literal;
25 21
 use Doctrine\ORM\Query\AST\OrderByClause;
26
-use Doctrine\ORM\Query\AST\OrderByItem;
27 22
 use Doctrine\ORM\Query\AST\PartialObjectExpression;
28
-use Doctrine\ORM\Query\AST\PathExpression;
29 23
 use Doctrine\ORM\Query\AST\SelectExpression;
30
-use Doctrine\ORM\Query\AST\SimpleArithmeticExpression;
31
-use Doctrine\ORM\Query\Expr\OrderBy;
32
-use Doctrine\ORM\Query\Expr\Select;
33 24
 use Doctrine\ORM\Query\SqlWalker;
34 25
 use Doctrine\ORM\Query\AST\SelectStatement;
35 26
 
Please login to merge, or discard this patch.