Completed
Pull Request — master (#123)
by Simon
11:43
created
tests/Doctrine/Tests/ODM/CouchDB/View/DoctrineAssociationsTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Doctrine\Tests\ODM\CouchDB\View;
4 4
 
5
-use Doctrine\CouchDB\HTTP\SocketClient;
6 5
 use Doctrine\CouchDB\View\Query;
7 6
 use Doctrine\ODM\CouchDB\View\DoctrineAssociations;
8
-use Doctrine\ODM\CouchDB\Mapping\ClassMetadata;
9 7
 use Doctrine\Tests\ODM\CouchDB\CouchDBFunctionalTestCase;
10 8
 
11 9
 class DoctrineAssociationsTest extends CouchDBFunctionalTestCase
Please login to merge, or discard this patch.
lib/Doctrine/ODM/CouchDB/Mapping/Driver/AnnotationDriver.php 1 patch
Unused Use Statements   +5 added lines, -8 removed lines patch added patch discarded remove patch
@@ -19,14 +19,11 @@
 block discarded – undo
19 19
 
20 20
 namespace Doctrine\ODM\CouchDB\Mapping\Driver;
21 21
 
22
-use Doctrine\Common\Annotations\AnnotationReader,
23
-    Doctrine\Common\Annotations\AnnotationRegistry,
24
-    Doctrine\Common\Annotations\Reader,
25
-    Doctrine\Common\Persistence\Mapping\ClassMetadata,
26
-    Doctrine\Common\Persistence\Mapping\Driver\AnnotationDriver as AbstractAnnotationDriver,
27
-    Doctrine\ODM\CouchDB\Mapping\Annotations as ODM,
28
-    Doctrine\ODM\CouchDB\Mapping\MappingException,
29
-    Doctrine\ODM\CouchDB\Event;
22
+use Doctrine\Common\Persistence\Mapping\ClassMetadata;
23
+use Doctrine\Common\Persistence\Mapping\Driver\AnnotationDriver as AbstractAnnotationDriver;
24
+use Doctrine\ODM\CouchDB\Mapping\Annotations as ODM;
25
+use Doctrine\ODM\CouchDB\Mapping\MappingException;
26
+use Doctrine\ODM\CouchDB\Event;
30 27
 
31 28
 /**
32 29
  * The AnnotationDriver reads the mapping metadata from docblock annotations.
Please login to merge, or discard this patch.
lib/Doctrine/ODM/CouchDB/Tools/Console/Command/GenerateProxiesCommand.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
19 19
 
20 20
 namespace Doctrine\ODM\CouchDB\Tools\Console\Command;
21 21
 
22
-use Symfony\Component\Console\Input\InputArgument,
23
-    Symfony\Component\Console\Input\InputOption,
24
-    Symfony\Component\Console,
25
-    Doctrine\ODM\CouchDB\Tools\Console\MetadataFilter;
22
+use Symfony\Component\Console\Input\InputArgument;
23
+use Symfony\Component\Console\Input\InputOption;
24
+use Symfony\Component\Console;
25
+use Doctrine\ODM\CouchDB\Tools\Console\MetadataFilter;
26 26
 
27 27
 /**
28 28
  * Command to (re)generate the proxy classes used by doctrine.
Please login to merge, or discard this patch.
lib/Doctrine/ODM/CouchDB/Tools/Console/Command/UpdateDesignDocCommand.php 1 patch
Unused Use Statements   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -19,11 +19,10 @@
 block discarded – undo
19 19
 
20 20
 namespace Doctrine\ODM\CouchDB\Tools\Console\Command;
21 21
 
22
-use Symfony\Component\Console\Input\InputArgument,
23
-    Symfony\Component\Console\Input\InputOption,
24
-    Symfony\Component\Console\Input\InputInterface,
25
-    Symfony\Component\Console\Output\OutputInterface,
26
-    Symfony\Component\Console\Command\Command;
22
+use Symfony\Component\Console\Input\InputArgument;
23
+use Symfony\Component\Console\Input\InputInterface;
24
+use Symfony\Component\Console\Output\OutputInterface;
25
+use Symfony\Component\Console\Command\Command;
27 26
 
28 27
 class UpdateDesignDocCommand extends Command
29 28
 {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ODM/CouchDB/Functional/LifecycleCallbacksTest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Doctrine\Tests\ODM\CouchDB\Functional;
4 4
 
5
-use Doctrine\Tests\ODM\CouchDB\CouchDBFunctionalTestCase;
6
-use Doctrine\Tests\Models\LifecycleCallbacks\CallbackProfile;
5
+use Doctrine\Tests\ODM\CouchDB\CouchDBFunctionalTestCase;
6
+use Doctrine\Tests\Models\LifecycleCallbacks\CallbackProfile;
7 7
 use Doctrine\Tests\Models\LifecycleCallbacks\CallbackUser;
8 8
 
9 9
 class LifecycleCallbacksTest extends CouchDBFunctionalTestCase
Please login to merge, or discard this patch.