Failed Conditions
Pull Request — develop (#6743)
by Grégoire
62:30
created
lib/Doctrine/ORM/EntityRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Doctrine\Common\Persistence\ObjectRepository;
10 10
 use Doctrine\Common\Util\Inflector;
11 11
 use Doctrine\ORM\Query\ResultSetMappingBuilder;
12
-use Doctrine\ORM\Repository\InvalidFindByCall;
13 12
 use Doctrine\ORM\Repository\InvalidMagicMethodCall;
14 13
 
15 14
 /**
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/EntityManagerTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 use Doctrine\ORM\Mapping\ClassMetadataFactory;
13 13
 use Doctrine\ORM\Mapping\Driver\MappingDriver;
14 14
 use Doctrine\ORM\NativeQuery;
15
-use Doctrine\ORM\ORMException;
16 15
 use Doctrine\ORM\ORMInvalidArgumentException;
17 16
 use Doctrine\ORM\Proxy\Factory\ProxyFactory;
18 17
 use Doctrine\ORM\Query;
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/CompositePrimaryKeyTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,8 @@
 block discarded – undo
3 3
 declare(strict_types=1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Functional;
6
-use Doctrine\Common\Util\Debug;
7 6
 use Doctrine\ORM\EntityManager\MissingIdentifierField;
8 7
 use Doctrine\ORM\EntityManager\UnrecognizedIdentifierFields;
9
-use Doctrine\ORM\ORMException;
10 8
 use Doctrine\ORM\Query\QueryException;
11 9
 use Doctrine\Tests\Models\Navigation\NavCountry;
12 10
 use Doctrine\Tests\Models\Navigation\NavPhotos;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Persisters/CantUseInOperatorOnCompositeKeys.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
 namespace Doctrine\ORM\Persisters;
6 6
 
7
-use Doctrine\ORM\ORMException;
8 7
 use Doctrine\ORM\PersisterException;
9 8
 
10 9
 class CantUseInOperatorOnCompositeKeys extends \Exception implements PersisterException
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Persisters/InvalidOrientation.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
 namespace Doctrine\ORM\Persisters;
6 6
 
7
-use Doctrine\ORM\ORMException;
8 7
 use Doctrine\ORM\PersisterException;
9 8
 
10 9
 class InvalidOrientation extends \Exception implements PersisterException
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Cache/DefaultQueryCache.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -5,17 +5,13 @@
 block discarded – undo
5 5
 
6 6
 namespace Doctrine\ORM\Cache;
7 7
 
8
-use Doctrine\Common\Collections\ArrayCollection;
9
-use Doctrine\Common\Proxy\Proxy;
10 8
 use Doctrine\ORM\Cache;
11 9
 use Doctrine\ORM\Cache\FeatureNotImplemented;
12 10
 use Doctrine\ORM\Cache\NonCacheableEntity;
13 11
 use Doctrine\ORM\Cache\Persister\CachedPersister;
14 12
 use Doctrine\ORM\EntityManagerInterface;
15 13
 use Doctrine\ORM\Mapping\AssociationMetadata;
16
-use Doctrine\ORM\Mapping\ClassMetadata;
17 14
 use Doctrine\ORM\Mapping\ToOneAssociationMetadata;
18
-use Doctrine\ORM\PersistentCollection;
19 15
 use Doctrine\ORM\Query;
20 16
 use Doctrine\ORM\Query\ResultSetMapping;
21 17
 use ProxyManager\Proxy\GhostObjectInterface;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Doctrine\ORM\Event\LoadClassMetadataEventArgs;
10 10
 use Doctrine\ORM\Event\OnClassMetadataNotFoundEventArgs;
11 11
 use Doctrine\ORM\Events;
12
-use Doctrine\ORM\NotImplementedYet;
13 12
 use Doctrine\ORM\ORMException;
14 13
 use Doctrine\ORM\Sequencing;
15 14
 use Doctrine\ORM\Sequencing\Planning\ColumnValueGeneratorExecutor;
Please login to merge, or discard this patch.