Completed
Pull Request — develop (#6743)
by Grégoire
65:46
created
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.
tests/Doctrine/Tests/ORM/Functional/TypeTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Doctrine\Tests\ORM\Functional;
4 4
 
5 5
 use Doctrine\DBAL\Types\Type as DBALType;
6
-use Doctrine\ORM\Mapping\AssociationMapping;
7 6
 use Doctrine\Tests\Models\Generic\BooleanModel;
8 7
 use Doctrine\Tests\Models\Generic\DateTimeModel;
9 8
 use Doctrine\Tests\Models\Generic\DecimalModel;
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/GH6402Test.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,6 @@
 block discarded – undo
5 5
 use Doctrine\Tests\Models\Quote\Address;
6 6
 use Doctrine\Tests\Models\Quote\City;
7 7
 use Doctrine\Tests\Models\Quote\FullAddress;
8
-use Doctrine\Tests\Models\Quote\Group;
9
-use Doctrine\Tests\Models\Quote\Phone;
10 8
 use Doctrine\Tests\Models\Quote\User;
11 9
 use Doctrine\Tests\OrmFunctionalTestCase;
12 10
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Internal/Hydration/ArrayHydrator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 
24 24
 use Doctrine\ORM\Mapping\ToOneAssociationMetadata;
25 25
 use PDO;
26
-use Doctrine\ORM\Mapping\ClassMetadata;
27 26
 
28 27
 /**
29 28
  * The ArrayHydrator produces a nested array "graph" that is often (not always)
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Persisters/Collection/OneToManyPersister.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 namespace Doctrine\ORM\Persisters\Collection;
23 23
 
24 24
 use Doctrine\Common\Collections\Criteria;
25
-use Doctrine\ORM\Mapping\ColumnMetadata;
26 25
 use Doctrine\ORM\Mapping\InheritanceType;
27 26
 use Doctrine\ORM\Mapping\ToManyAssociationMetadata;
28 27
 use Doctrine\ORM\PersistentCollection;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 use Doctrine\ORM\Query\Parser;
27 27
 use Doctrine\ORM\Query\ParserResult;
28 28
 use Doctrine\ORM\Query\QueryException;
29
-use Doctrine\ORM\Mapping\ClassMetadata;
30 29
 use Doctrine\ORM\Query\ParameterTypeInferer;
31 30
 use Doctrine\Common\Collections\ArrayCollection;
32 31
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -22,9 +22,7 @@
 block discarded – undo
22 22
 namespace Doctrine\ORM\Query\Exec;
23 23
 
24 24
 use Doctrine\DBAL\Connection;
25
-use Doctrine\ORM\Mapping\ColumnMetadata;
26 25
 use Doctrine\ORM\Query\AST;
27
-use Doctrine\ORM\Utility\PersisterHelper;
28 26
 
29 27
 /**
30 28
  * Executes the SQL statements for bulk DQL DELETE statements on classes in
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -22,10 +22,8 @@
 block discarded – undo
22 22
 namespace Doctrine\ORM\Query\Exec;
23 23
 
24 24
 use Doctrine\DBAL\Connection;
25
-use Doctrine\ORM\Mapping\ColumnMetadata;
26 25
 use Doctrine\ORM\Query\AST;
27 26
 use Doctrine\ORM\Query\ParameterTypeInferer;
28
-use Doctrine\ORM\Utility\PersisterHelper;
29 27
 
30 28
 /**
31 29
  * Executes the SQL statements for bulk DQL UPDATE statements on classes in
Please login to merge, or discard this patch.