Test Failed
Push — develop ( 10da16...c19264 )
by Luís
63:31
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.
tests/Doctrine/Tests/ORM/Query/QueryTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\Cache\ArrayCache;
6 6
 use Doctrine\Common\Collections\ArrayCollection;
7
-
8 7
 use Doctrine\ORM\EntityManager;
9 8
 use Doctrine\ORM\Internal\Hydration\IterableResult;
10 9
 use Doctrine\ORM\Query\Parameter;
Please login to merge, or discard this patch.
tests/Doctrine/Tests/OrmFunctionalTestCase.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\Cache\ArrayCache;
6 6
 use Doctrine\DBAL\Driver\Connection;
7
-use Doctrine\DBAL\Driver\PDOSqlite\Driver as SqliteDriver;
8 7
 use Doctrine\DBAL\Logging\DebugStack;
9 8
 use Doctrine\DBAL\Types\Type;
10 9
 use Doctrine\ORM\Cache\CacheConfiguration;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Cache/DefaultEntityHydrator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 namespace Doctrine\ORM\Cache;
24 24
 
25 25
 use Doctrine\Common\Util\ClassUtils;
26
-
27 26
 use Doctrine\ORM\Mapping\FetchMode;
28 27
 use Doctrine\ORM\Mapping\FieldMetadata;
29 28
 use Doctrine\ORM\Mapping\OneToOneAssociationMetadata;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Cache/DefaultQueryCache.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -22,14 +22,11 @@
 block discarded – undo
22 22
 
23 23
 namespace Doctrine\ORM\Cache;
24 24
 
25
-use Doctrine\Common\Collections\ArrayCollection;
26 25
 use Doctrine\ORM\Cache\Persister\CachedPersister;
27 26
 use Doctrine\ORM\EntityManagerInterface;
28 27
 use Doctrine\ORM\Mapping\AssociationMetadata;
29 28
 use Doctrine\ORM\Mapping\ToOneAssociationMetadata;
30 29
 use Doctrine\ORM\Query\ResultSetMapping;
31
-use Doctrine\ORM\Mapping\ClassMetadata;
32
-use Doctrine\ORM\PersistentCollection;
33 30
 use Doctrine\Common\Proxy\Proxy;
34 31
 use Doctrine\ORM\Cache;
35 32
 use Doctrine\ORM\Query;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Cache/Persister/Entity/AbstractEntityPersister.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -34,12 +34,10 @@
 block discarded – undo
34 34
 use Doctrine\ORM\Mapping\FetchMode;
35 35
 use Doctrine\ORM\Mapping\ManyToManyAssociationMetadata;
36 36
 use Doctrine\ORM\Mapping\OneToManyAssociationMetadata;
37
-use Doctrine\ORM\Mapping\OneToOneAssociationMetadata;
38 37
 use Doctrine\ORM\Mapping\ToOneAssociationMetadata;
39 38
 use Doctrine\ORM\PersistentCollection;
40 39
 use Doctrine\ORM\EntityManagerInterface;
41 40
 use Doctrine\ORM\Persisters\Entity\EntityPersister;
42
-
43 41
 use Doctrine\Common\Util\ClassUtils;
44 42
 use Doctrine\Common\Collections\Criteria;
45 43
 
Please login to merge, or discard this patch.