Completed
Push — pull-request/8500 ( e49efc...54b484 )
by Kamil
36:05 queued 17:36
created
src/Sylius/Bundle/ReviewBundle/Updater/AverageRatingUpdater.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 use Doctrine\Common\Persistence\ObjectManager;
15 15
 use Sylius\Component\Review\Calculator\ReviewableRatingCalculatorInterface;
16
-use Sylius\Component\Review\Model\ReviewableInterface;
17 16
 use Sylius\Component\Review\Model\ReviewInterface;
17
+use Sylius\Component\Review\Model\ReviewableInterface;
18 18
 
19 19
 /**
20 20
  * @author Mateusz Zalewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Bundle/ReviewBundle/Updater/ReviewableRatingUpdaterInterface.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 
12 12
 namespace Sylius\Bundle\ReviewBundle\Updater;
13 13
 
14
-use Sylius\Component\Review\Model\ReviewableInterface;
15 14
 use Sylius\Component\Review\Model\ReviewInterface;
15
+use Sylius\Component\Review\Model\ReviewableInterface;
16 16
 
17 17
 /**
18 18
  * @author Mateusz Zalewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/OrderInterface.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
 use Sylius\Component\Customer\Model\CustomerAwareInterface;
17 17
 use Sylius\Component\Order\Model\OrderInterface as BaseOrderInterface;
18 18
 use Sylius\Component\Payment\Model\PaymentsSubjectInterface;
19
-use Sylius\Component\Promotion\Model\PromotionCouponInterface as BaseCouponInterface;
20 19
 use Sylius\Component\Promotion\Model\CountablePromotionSubjectInterface;
21 20
 use Sylius\Component\Promotion\Model\PromotionCouponAwarePromotionSubjectInterface;
21
+use Sylius\Component\Promotion\Model\PromotionCouponInterface as BaseCouponInterface;
22 22
 use Sylius\Component\User\Model\UserInterface;
23 23
 
24 24
 /**
Please login to merge, or discard this patch.
src/Sylius/Component/Core/StateResolver/OrderPaymentStateResolver.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
 
14 14
 use SM\Factory\FactoryInterface;
15 15
 use SM\StateMachine\StateMachineInterface;
16
-use Sylius\Component\Order\Model\OrderInterface;
17
-use Sylius\Component\Order\StateResolver\StateResolverInterface;
18 16
 use Sylius\Component\Core\Model\PaymentInterface;
19 17
 use Sylius\Component\Core\OrderPaymentTransitions;
18
+use Sylius\Component\Order\Model\OrderInterface;
19
+use Sylius\Component\Order\StateResolver\StateResolverInterface;
20 20
 
21 21
 /**
22 22
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Core/StateResolver/OrderShippingStateResolver.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@
 block discarded – undo
13 13
 
14 14
 use SM\Factory\FactoryInterface;
15 15
 use SM\StateMachine\StateMachineInterface;
16
-use Sylius\Component\Order\Model\OrderInterface;
17
-use Sylius\Component\Order\StateResolver\StateResolverInterface;
18 16
 use Sylius\Component\Core\Model\ShipmentInterface;
19 17
 use Sylius\Component\Core\OrderShippingStates;
20 18
 use Sylius\Component\Core\OrderShippingTransitions;
19
+use Sylius\Component\Order\Model\OrderInterface;
20
+use Sylius\Component\Order\StateResolver\StateResolverInterface;
21 21
 
22 22
 /**
23 23
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductOptionValue.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Sylius\Component\Product\Model;
13 13
 
14 14
 use Sylius\Component\Resource\Model\TranslatableTrait;
15
-use Sylius\Component\Resource\Model\TranslationInterface;
16 15
 
17 16
 /**
18 17
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
Bundle/AddressingBundle/DependencyInjection/SyliusAddressingExtension.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -15,8 +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\Parameter;
19
-use Symfony\Component\DependencyInjection\Reference;
20 18
 
21 19
 /**
22 20
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Bundle/ReviewBundle/Form/Type/ReviewType.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 use Sylius\Bundle\ResourceBundle\Form\Type\AbstractResourceType;
15 15
 use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
16
-use Symfony\Component\Form\Extension\Core\Type\TextareaType;
17 16
 use Symfony\Component\Form\Extension\Core\Type\TextType;
17
+use Symfony\Component\Form\Extension\Core\Type\TextareaType;
18 18
 use Symfony\Component\Form\FormBuilderInterface;
19 19
 use Symfony\Component\OptionsResolver\OptionsResolver;
20 20
 use Symfony\Component\Validator\Constraints\Valid;
Please login to merge, or discard this patch.
src/Sylius/Bundle/TaxonomyBundle/DependencyInjection/Configuration.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,6 @@
 block discarded – undo
12 12
 namespace Sylius\Bundle\TaxonomyBundle\DependencyInjection;
13 13
 
14 14
 use Sylius\Bundle\ResourceBundle\Controller\ResourceController;
15
-use Sylius\Bundle\ResourceBundle\Form\Type\ResourceFromIdentifierType;
16
-use Sylius\Bundle\ResourceBundle\Form\Type\ResourceToHiddenIdentifierType;
17
-use Sylius\Bundle\ResourceBundle\Form\Type\ResourceToIdentifierType;
18 15
 use Sylius\Bundle\ResourceBundle\SyliusResourceBundle;
19 16
 use Sylius\Bundle\TaxonomyBundle\Form\Type\TaxonTranslationType;
20 17
 use Sylius\Bundle\TaxonomyBundle\Form\Type\TaxonType;
Please login to merge, or discard this patch.