Completed
Push — master ( c7c5a7...7fd11c )
by Kamil
15s
created
src/Sylius/Bundle/SettingsBundle/Controller/SettingsController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 use Sylius\Bundle\SettingsBundle\Manager\SettingsManagerInterface;
17 17
 use Symfony\Component\HttpFoundation\Request;
18 18
 use Symfony\Component\HttpFoundation\Response;
19
-use Symfony\Component\OptionsResolver\Exception\MissingOptionsException;
20 19
 use Symfony\Component\Security\Core\Exception\AccessDeniedException;
21 20
 use Symfony\Component\Translation\TranslatorInterface;
22 21
 use Symfony\Component\Validator\Exception\ValidatorException;
Please login to merge, or discard this patch.
src/Sylius/Behat/spec/Service/Setter/ChannelContextSetterSpec.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 spec\Sylius\Behat\Page;
4 4
 
5 5
 use PhpSpec\ObjectBehavior;
6
-use Prophecy\Argument;
7 6
 use SensioLabs\Behat\PageObjectExtension\PageObject\PageObject;
8 7
 use Sylius\Behat\Page\Page;
9 8
 
Please login to merge, or discard this patch.
src/Sylius/Behat/spec/Service/Setter/CookieSetterSpec.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 spec\Sylius\Behat\Page;
4 4
 
5 5
 use PhpSpec\ObjectBehavior;
6
-use Prophecy\Argument;
7 6
 use SensioLabs\Behat\PageObjectExtension\PageObject\PageObject;
8 7
 use Sylius\Behat\Page\Page;
9 8
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Cart/SummaryPage.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Behat\Mink\Exception\ElementNotFoundException;
15 15
 use Sylius\Behat\Page\SymfonyPage;
16
-use Symfony\Component\Routing\RouterInterface;
17 16
 
18 17
 /**
19 18
  * @author Mateusz Zalewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Doctrine/ORM/ProductRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Doctrine\ORM\QueryBuilder;
15 15
 use Sylius\Bundle\ProductBundle\Doctrine\ORM\ProductRepository as BaseProductRepository;
16 16
 use Sylius\Component\Core\Model\ChannelInterface;
17
-use Sylius\Component\Core\Model\TaxonInterface;
18 17
 use Sylius\Component\Core\Repository\ProductRepositoryInterface;
19 18
 
20 19
 /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Transform/ProductVariantContext.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Behat\Behat\Context\Context;
15 15
 use Sylius\Component\Core\Repository\ProductRepositoryInterface;
16
-use Sylius\Component\Core\Repository\ProductVariantRepositoryInterface;
17 16
 use Sylius\Component\Resource\Repository\RepositoryInterface;
18 17
 use Webmozart\Assert\Assert;
19 18
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/PayumBundle/DependencyInjection/SyliusPayumExtension.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Sylius\Bundle\PayumBundle\DependencyInjection;
13 13
 
14
-use Payum\Bundle\PayumBundle\DependencyInjection\MainConfiguration as PayumConfiguration;
15
-use Payum\Bundle\PayumBundle\DependencyInjection\PayumExtension;
16 14
 use Sylius\Bundle\ResourceBundle\DependencyInjection\Extension\AbstractResourceExtension;
17 15
 use Symfony\Component\Config\FileLocator;
18 16
 use Symfony\Component\DependencyInjection\ContainerBuilder;
Please login to merge, or discard this patch.
src/Sylius/Bundle/ContentBundle/DependencyInjection/Configuration.php 1 patch
Unused Use Statements   -14 removed lines patch added patch discarded remove patch
@@ -12,25 +12,11 @@
 block discarded – undo
12 12
 namespace Sylius\Bundle\ContentBundle\DependencyInjection;
13 13
 
14 14
 use Sylius\Bundle\ContentBundle\Doctrine\ODM\PHPCR\StaticContentRepository;
15
-use Sylius\Bundle\ContentBundle\Document\ActionBlock;
16
-use Sylius\Bundle\ContentBundle\Document\ImagineBlock;
17
-use Sylius\Bundle\ContentBundle\Document\RedirectRoute;
18
-use Sylius\Bundle\ContentBundle\Document\ReferenceBlock;
19 15
 use Sylius\Bundle\ContentBundle\Document\Route;
20
-use Sylius\Bundle\ContentBundle\Document\SimpleBlock;
21
-use Sylius\Bundle\ContentBundle\Document\SlideshowBlock;
22 16
 use Sylius\Bundle\ContentBundle\Document\StaticContent;
23
-use Sylius\Bundle\ContentBundle\Document\StringBlock;
24
-use Sylius\Bundle\ContentBundle\Form\Type\ActionBlockType;
25
-use Sylius\Bundle\ContentBundle\Form\Type\ImagineBlockType;
26
-use Sylius\Bundle\ContentBundle\Form\Type\RedirectRouteType;
27
-use Sylius\Bundle\ContentBundle\Form\Type\ReferenceBlockType;
28 17
 use Sylius\Bundle\ContentBundle\Form\Type\RouteType;
29
-use Sylius\Bundle\ContentBundle\Form\Type\SimpleBlockType;
30
-use Sylius\Bundle\ContentBundle\Form\Type\SlideshowBlockType;
31 18
 use Sylius\Bundle\ContentBundle\Form\Type\StaticContentChoiceType;
32 19
 use Sylius\Bundle\ContentBundle\Form\Type\StaticContentType;
33
-use Sylius\Bundle\ContentBundle\Form\Type\StringBlockType;
34 20
 use Sylius\Bundle\ResourceBundle\Controller\ResourceController;
35 21
 use Sylius\Bundle\ResourceBundle\SyliusResourceBundle;
36 22
 use Sylius\Component\Resource\Factory\Factory;
Please login to merge, or discard this patch.
Sylius/Bundle/ContentBundle/DependencyInjection/SyliusContentExtension.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Symfony\Component\Config\FileLocator;
16 16
 use Symfony\Component\DependencyInjection\ContainerBuilder;
17 17
 use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
18
-use Symfony\Component\DependencyInjection\Reference;
19 18
 
20 19
 /**
21 20
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.