Completed
Push — develop ( dc031d...86c271 )
by
unknown
14s
created
SecurityBundle/Tests/Authentication/Strategies/HeaderFieldStrategyTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 namespace Graviton\SecurityBundle\Authentication\Strategies;
7 7
 
8 8
 use Graviton\TestBundle\Test\WebTestCase;
9
-use Symfony\Component\HttpFoundation\RequestStack;
10 9
 
11 10
 /**
12 11
  * Class HeaderFieldStrategyTest
Please login to merge, or discard this patch.
src/Graviton/ExceptionBundle/Exception/RestExceptionTrait.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 
6 6
 namespace Graviton\ExceptionBundle\Exception;
7 7
 
8
-use Symfony\Component\HttpKernel\Exception\HttpException;
9 8
 use Symfony\Component\HttpFoundation\Response;
10 9
 
11 10
 /**
Please login to merge, or discard this patch.
src/Graviton/SwaggerBundle/Service/Swagger.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,11 +6,9 @@
 block discarded – undo
6 6
 namespace Graviton\SwaggerBundle\Service;
7 7
 
8 8
 use Graviton\CoreBundle\Service\CoreUtils;
9
-use Graviton\ExceptionBundle\Exception\MalformedInputException;
10 9
 use Graviton\RestBundle\Service\RestUtils;
11 10
 use Graviton\SchemaBundle\Model\SchemaModel;
12 11
 use Graviton\SchemaBundle\SchemaUtils;
13
-use Symfony\Component\Config\Definition\Exception\Exception;
14 12
 use Symfony\Component\Routing\Route;
15 13
 
16 14
 /**
Please login to merge, or discard this patch.
src/Graviton/GeneratorBundle/Command/GenerateBuildIndexesCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 namespace Graviton\GeneratorBundle\Command;
7 7
 
8 8
 use Doctrine\ODM\MongoDB\DocumentManager;
9
-use Graviton\GeneratorBundle\Definition\Loader\LoaderInterface;
10 9
 use Symfony\Component\Console\Command\Command;
11 10
 use Symfony\Component\Console\Input\InputInterface;
12 11
 use Symfony\Component\Console\Output\OutputInterface;
Please login to merge, or discard this patch.
Tests/Authentication/Strategies/AbstractHttpStrategyProxy.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 
8 8
 use Graviton\SecurityBundle\Authentication\Strategies\AbstractHttpStrategy;
9 9
 use Symfony\Component\HttpFoundation\Request;
10
-use Symfony\Component\Security\Core\Role\Role;
11 10
 
12 11
 /**
13 12
  * Class AbstractHttpStrategyProxy
Please login to merge, or discard this patch.
src/Graviton/ExceptionBundle/Exception/NotFoundException.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 namespace Graviton\ExceptionBundle\Exception;
7 7
 
8 8
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
9
-use Symfony\Component\HttpFoundation\Response;
10 9
 
11 10
 /**
12 11
  * Not found exception class
Please login to merge, or discard this patch.
src/Graviton/RestBundle/Listener/SelfLinkResponseListener.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 Symfony\Component\Routing\Generator\UrlGeneratorInterface;
13 13
 use Graviton\RestBundle\HttpFoundation\LinkHeader;
14 14
 use Graviton\RestBundle\HttpFoundation\LinkHeaderItem;
15
-use Graviton\RestBundle\Event\RestEvent;
16 15
 
17 16
 /**
18 17
  * FilterResponseListener for adding a rel=self Link header to a response.
Please login to merge, or discard this patch.
src/Graviton/RestBundle/GravitonRestBundle.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -6,13 +6,10 @@
 block discarded – undo
6 6
 namespace Graviton\RestBundle;
7 7
 
8 8
 use Symfony\Component\HttpKernel\Bundle\Bundle;
9
-use Symfony\Component\DependencyInjection\Compiler\PassConfig;
10 9
 use Symfony\Component\DependencyInjection\ContainerBuilder;
11 10
 use Graviton\BundleBundle\GravitonBundleInterface;
12 11
 use JMS\SerializerBundle\JMSSerializerBundle;
13
-use Misd\GuzzleBundle\MisdGuzzleBundle;
14 12
 use Graviton\RestBundle\DependencyInjection\Compiler\RestServicesCompilerPass;
15
-use Graviton\RestBundle\DependencyInjection\Compiler\RqlQueryDecoratorCompilerPass;
16 13
 use Graviton\RestBundle\DependencyInjection\Compiler\RqlQueryRoutesCompilerPass;
17 14
 
18 15
 /**
Please login to merge, or discard this patch.
src/Graviton/FileBundle/Manager/FileManager.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 namespace Graviton\FileBundle\Manager;
7 7
 
8 8
 use Doctrine\ODM\MongoDB\Id\UuidGenerator;
9
-use GravitonDyn\FileBundle\Document\File as FileDocument;
9
+use GravitonDyn\FileBundle\Document\File as DocumentFile;
10 10
 use GravitonDyn\FileBundle\Document\FileMetadataBase;
11 11
 use GravitonDyn\FileBundle\Document\FileMetadataEmbedded;
12 12
 use League\Flysystem\Filesystem;
@@ -16,7 +16,6 @@  discard block
 block discarded – undo
16 16
 use Symfony\Component\HttpFoundation\ResponseHeaderBag;
17 17
 use Symfony\Component\HttpFoundation\FileBag;
18 18
 use Symfony\Component\HttpFoundation\File\UploadedFile;
19
-use GravitonDyn\FileBundle\Document\File as DocumentFile;
20 19
 use Doctrine\Bundle\MongoDBBundle\ManagerRegistry;
21 20
 use Doctrine\ODM\MongoDB\DocumentManager;
22 21
 use Symfony\Component\Filesystem\Filesystem as SfFileSystem;
Please login to merge, or discard this patch.