@@ -19,10 +19,10 @@ |
||
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. |
@@ -19,11 +19,10 @@ |
||
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 | { |
@@ -2,11 +2,11 @@ |
||
2 | 2 | |
3 | 3 | namespace Doctrine\ODM\CouchDB\Mapping; |
4 | 4 | |
5 | -use Doctrine\ODM\CouchDB\DocumentManager, |
|
6 | - Doctrine\Common\Persistence\Mapping\Driver\MappingDriver, |
|
7 | - Doctrine\Common\Persistence\Mapping\ClassMetadata as ClassMetadataInterface, |
|
8 | - Doctrine\Common\Persistence\Mapping\ReflectionService, |
|
9 | - Doctrine\Common\Persistence\Mapping\AbstractClassMetadataFactory; |
|
5 | +use Doctrine\ODM\CouchDB\DocumentManager; |
|
6 | +use Doctrine\Common\Persistence\Mapping\Driver\MappingDriver; |
|
7 | +use Doctrine\Common\Persistence\Mapping\ClassMetadata as ClassMetadataInterface; |
|
8 | +use Doctrine\Common\Persistence\Mapping\ReflectionService; |
|
9 | +use Doctrine\Common\Persistence\Mapping\AbstractClassMetadataFactory; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * The ClassMetadataFactory is used to create ClassMetadata objects that contain all the |
@@ -10,12 +10,7 @@ |
||
10 | 10 | use Doctrine\ODM\CouchDB\UnitOfWork; |
11 | 11 | use Doctrine\ODM\CouchDB\Mapping\ClassMetadata; |
12 | 12 | use Doctrine\ODM\CouchDB\Mapping\ClassMetadataFactory; |
13 | - |
|
14 | -use Doctrine\Tests\Models\ECommerce\ECommerceCart; |
|
15 | -use Doctrine\Tests\Models\ECommerce\ECommerceCustomer; |
|
16 | 13 | use Doctrine\Tests\Models\ECommerce\ECommerceFeature; |
17 | -use Doctrine\Tests\Models\ECommerce\ECommerceProduct; |
|
18 | -use Doctrine\Tests\Models\ECommerce\ECommerceShipping; |
|
19 | 14 | use ProxyManager\Proxy\GhostObjectInterface; |
20 | 15 | |
21 | 16 | /** |