Completed
Push — pagerfanta-fix ( 187c46...923c07 )
by Kamil
25:06 queued 03:45
created
src/Sylius/Behat/Context/Setup/OrderContext.php 1 patch
Unused Use Statements   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -14,32 +14,32 @@
 block discarded – undo
14 14
 use Behat\Behat\Context\Context;
15 15
 use Doctrine\Common\Persistence\ObjectManager;
16 16
 use SM\Factory\FactoryInterface as StateMachineFactoryInterface;
17
+use Sylius\Behat\Service\SharedStorageInterface;
17 18
 use Sylius\Component\Core\Currency\CurrencyStorageInterface;
19
+use Sylius\Component\Core\Model\AddressInterface;
18 20
 use Sylius\Component\Core\Model\ChannelInterface;
19 21
 use Sylius\Component\Core\Model\ChannelPricingInterface;
20
-use Sylius\Component\Core\Model\PromotionCouponInterface;
21
-use Sylius\Component\Core\OrderCheckoutTransitions;
22
-use Sylius\Component\Currency\Model\CurrencyInterface;
23
-use Sylius\Component\Order\Processor\OrderProcessorInterface;
24
-use Sylius\Component\Order\Modifier\OrderItemQuantityModifierInterface;
25
-use Sylius\Component\Core\Model\AddressInterface;
26 22
 use Sylius\Component\Core\Model\OrderInterface;
27 23
 use Sylius\Component\Core\Model\OrderItemInterface;
28 24
 use Sylius\Component\Core\Model\ProductInterface;
29 25
 use Sylius\Component\Core\Model\ProductVariantInterface;
26
+use Sylius\Component\Core\Model\PromotionCouponInterface;
30 27
 use Sylius\Component\Core\Model\ShippingMethodInterface;
28
+use Sylius\Component\Core\OrderCheckoutTransitions;
31 29
 use Sylius\Component\Core\Repository\OrderRepositoryInterface;
32
-use Sylius\Behat\Service\SharedStorageInterface;
30
+use Sylius\Component\Currency\Model\CurrencyInterface;
31
+use Sylius\Component\Customer\Model\CustomerInterface;
32
+use Sylius\Component\Order\Modifier\OrderItemQuantityModifierInterface;
33 33
 use Sylius\Component\Order\OrderTransitions;
34
+use Sylius\Component\Order\Processor\OrderProcessorInterface;
34 35
 use Sylius\Component\Payment\Model\PaymentInterface;
35 36
 use Sylius\Component\Payment\Model\PaymentMethodInterface;
36 37
 use Sylius\Component\Payment\PaymentTransitions;
38
+use Sylius\Component\Product\Resolver\ProductVariantResolverInterface;
37 39
 use Sylius\Component\Resource\Factory\FactoryInterface;
38 40
 use Sylius\Component\Resource\Repository\RepositoryInterface;
39 41
 use Sylius\Component\Shipping\ShipmentTransitions;
40
-use Sylius\Component\Customer\Model\CustomerInterface;
41 42
 use Sylius\Component\User\Model\UserInterface;
42
-use Sylius\Component\Product\Resolver\ProductVariantResolverInterface;
43 43
 
44 44
 /**
45 45
  * @author Łukasz Chruściel <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/UserContext.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 Behat\Behat\Context\Context;
15 15
 use Doctrine\Common\Persistence\ObjectManager;
16
-use Sylius\Bundle\CoreBundle\Fixture\Factory\ExampleFactoryInterface;
17 16
 use Sylius\Behat\Service\SharedStorageInterface;
17
+use Sylius\Bundle\CoreBundle\Fixture\Factory\ExampleFactoryInterface;
18 18
 use Sylius\Component\User\Model\UserInterface;
19 19
 use Sylius\Component\User\Repository\UserRepositoryInterface;
20 20
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Product/IndexPageInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -63,12 +63,14 @@  discard block
 block discarded – undo
63 63
 
64 64
     /**
65 65
      * @param string $productName
66
+     * @return void
66 67
      */
67 68
     public function removeProduct($productName);
68 69
 
69 70
     /**
70 71
      * @param string $productName
71 72
      * @param int $quantity
73
+     * @return void
72 74
      */
73 75
     public function changeQuantity($productName, $quantity);
74 76
 
@@ -112,5 +114,8 @@  discard block
 block discarded – undo
112 114
      */
113 115
     public function getQuantity($productName);
114 116
 
117
+    /**
118
+     * @return void
119
+     */
115 120
     public function clearCart();
116 121
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductVariant.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\Common\Collections\ArrayCollection;
15 15
 use Doctrine\Common\Collections\Collection;
16 16
 use Sylius\Component\Resource\Model\TranslatableTrait;
17
-use Sylius\Component\Resource\Model\TranslationInterface;
18 17
 
19 18
 /**
20 19
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductVariantTranslationInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.