Completed
Push — revert-symfony-336 ( 87e565 )
by Kamil
36:02
created
src/Sylius/Behat/Page/Shop/Product/ShowPageInterface.php 2 patches
Doc Comments   +9 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@  discard block
 block discarded – undo
24 24
 {
25 25
     /**
26 26
      * @throws ElementNotFoundException
27
+     * @return void
27 28
      */
28 29
     public function addToCart();
29 30
 
@@ -31,6 +32,7 @@  discard block
 block discarded – undo
31 32
      * @param string $quantity
32 33
      *
33 34
      * @throws ElementNotFoundException
35
+     * @return void
34 36
      */
35 37
     public function addToCartWithQuantity($quantity);
36 38
 
@@ -38,6 +40,7 @@  discard block
 block discarded – undo
38 40
      * @param string $variant
39 41
      *
40 42
      * @throws ElementNotFoundException
43
+     * @return void
41 44
      */
42 45
     public function addToCartWithVariant($variant);
43 46
 
@@ -46,6 +49,7 @@  discard block
 block discarded – undo
46 49
      * @param string $optionValue
47 50
      *
48 51
      * @throws ElementNotFoundException
52
+     * @return void
49 53
      */
50 54
     public function addToCartWithOption(ProductOptionInterface $option, $optionValue);
51 55
 
@@ -56,6 +60,7 @@  discard block
 block discarded – undo
56 60
 
57 61
     /**
58 62
      * @param string $url
63
+     * @return void
59 64
      */
60 65
     public function visit($url);
61 66
 
@@ -67,7 +72,7 @@  discard block
 block discarded – undo
67 72
     public function getAttributeByName($attributeName);
68 73
 
69 74
     /**
70
-     * @return array
75
+     * @return \Behat\Mink\Element\NodeElement[]
71 76
      */
72 77
     public function getAttributes();
73 78
 
@@ -80,6 +85,7 @@  discard block
 block discarded – undo
80 85
 
81 86
     /**
82 87
      * @param int $timeout
88
+     * @return void
83 89
      */
84 90
     public function waitForValidationErrors($timeout);
85 91
 
@@ -123,11 +129,13 @@  discard block
 block discarded – undo
123 129
     /**
124 130
      * @param string $optionName
125 131
      * @param string $optionValue
132
+     * @return void
126 133
      */
127 134
     public function selectOption($optionName, $optionValue);
128 135
 
129 136
     /**
130 137
      * @param string $variantName
138
+     * @return void
131 139
      */
132 140
     public function selectVariant($variantName);
133 141
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Behat\Page\Shop\Product;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Form/Extension/CountryTypeExtension.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     }
94 94
 
95 95
     /**
96
-     * @param $code
96
+     * @param string $code
97 97
      *
98 98
      * @return null|string
99 99
      */
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @return array
106
+     * @return string[]
107 107
      */
108 108
     private function getAvailableCountries()
109 109
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\CoreBundle\Form\Extension;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/ReviewBundle/Form/Type/ReviewType.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\ReviewBundle\Form\Type;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/TaxonomyBundle/DependencyInjection/Configuration.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\TaxonomyBundle\DependencyInjection;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/UserBundle/DependencyInjection/Configuration.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Sylius\Bundle\ResourceBundle\SyliusResourceBundle;
15 15
 use Sylius\Bundle\UserBundle\Controller\UserController;
16
-use Sylius\Bundle\UserBundle\Form\Type\UserType;
17 16
 use Sylius\Component\Resource\Factory\Factory;
18 17
 use Sylius\Component\User\Model\User;
19 18
 use Sylius\Component\User\Model\UserInterface;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\UserBundle\DependencyInjection;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/UserBundle/Form/Type/UserType.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Sylius\Bundle\UserBundle\Form\Type;
13 13
 
14 14
 use Sylius\Bundle\ResourceBundle\Form\Type\AbstractResourceType;
15
-use Sylius\Component\Resource\Metadata\MetadataInterface;
16 15
 use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
17 16
 use Symfony\Component\Form\Extension\Core\Type\EmailType;
18 17
 use Symfony\Component\Form\Extension\Core\Type\PasswordType;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\UserBundle\Form\Type;
15 15
 
Please login to merge, or discard this patch.
Sylius/Bundle/ResourceBundle/DependencyInjection/Driver/AbstractDriver.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Sylius\Component\Resource\Metadata\MetadataInterface;
18 18
 use Symfony\Component\DependencyInjection\ContainerBuilder;
19 19
 use Symfony\Component\DependencyInjection\Definition;
20
-use Symfony\Component\DependencyInjection\Parameter;
21 20
 use Symfony\Component\DependencyInjection\Reference;
22 21
 
23 22
 /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\ResourceBundle\DependencyInjection\Driver;
15 15
 
Please login to merge, or discard this patch.
Bundle/PayumBundle/Action/Paypal/ExpressCheckout/ConvertPaymentAction.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,6 @@
 block discarded – undo
103 103
 
104 104
     /**
105 105
      * @param int $price
106
-     * @param string $currencyCode
107 106
      *
108 107
      * @return float
109 108
      */
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\PayumBundle\Action\Paypal\ExpressCheckout;
15 15
 
@@ -59,33 +59,33 @@  discard block
 block discarded – undo
59 59
 
60 60
         $m = 0;
61 61
         foreach ($order->getItems() as $item) {
62
-            $details['L_PAYMENTREQUEST_0_NAME'.$m] = $item->getVariant()->getProduct()->getName();
63
-            $details['L_PAYMENTREQUEST_0_AMT'.$m] = $this->formatPrice($item->getDiscountedUnitPrice());
64
-            $details['L_PAYMENTREQUEST_0_QTY'.$m] = $item->getQuantity();
62
+            $details['L_PAYMENTREQUEST_0_NAME' . $m] = $item->getVariant()->getProduct()->getName();
63
+            $details['L_PAYMENTREQUEST_0_AMT' . $m] = $this->formatPrice($item->getDiscountedUnitPrice());
64
+            $details['L_PAYMENTREQUEST_0_QTY' . $m] = $item->getQuantity();
65 65
 
66 66
             ++$m;
67 67
         }
68 68
 
69 69
         if (0 !== $taxTotal = $order->getAdjustmentsTotalRecursively(AdjustmentInterface::TAX_ADJUSTMENT)) {
70
-            $details['L_PAYMENTREQUEST_0_NAME'.$m] = 'Tax Total';
71
-            $details['L_PAYMENTREQUEST_0_AMT'.$m] = $this->formatPrice($taxTotal);
72
-            $details['L_PAYMENTREQUEST_0_QTY'.$m] = 1;
70
+            $details['L_PAYMENTREQUEST_0_NAME' . $m] = 'Tax Total';
71
+            $details['L_PAYMENTREQUEST_0_AMT' . $m] = $this->formatPrice($taxTotal);
72
+            $details['L_PAYMENTREQUEST_0_QTY' . $m] = 1;
73 73
 
74 74
             ++$m;
75 75
         }
76 76
 
77 77
         if (0 !== $promotionTotal = $order->getOrderPromotionTotal()) {
78
-            $details['L_PAYMENTREQUEST_0_NAME'.$m] = 'Discount';
79
-            $details['L_PAYMENTREQUEST_0_AMT'.$m] = $this->formatPrice($promotionTotal);
80
-            $details['L_PAYMENTREQUEST_0_QTY'.$m] = 1;
78
+            $details['L_PAYMENTREQUEST_0_NAME' . $m] = 'Discount';
79
+            $details['L_PAYMENTREQUEST_0_AMT' . $m] = $this->formatPrice($promotionTotal);
80
+            $details['L_PAYMENTREQUEST_0_QTY' . $m] = 1;
81 81
 
82 82
             ++$m;
83 83
         }
84 84
 
85 85
         if (0 !== $shippingTotal = $order->getShippingTotal()) {
86
-            $details['L_PAYMENTREQUEST_0_NAME'.$m] = 'Shipping Total';
87
-            $details['L_PAYMENTREQUEST_0_AMT'.$m] = $this->formatPrice($shippingTotal);
88
-            $details['L_PAYMENTREQUEST_0_QTY'.$m] = 1;
86
+            $details['L_PAYMENTREQUEST_0_NAME' . $m] = 'Shipping Total';
87
+            $details['L_PAYMENTREQUEST_0_AMT' . $m] = $this->formatPrice($shippingTotal);
88
+            $details['L_PAYMENTREQUEST_0_QTY' . $m] = 1;
89 89
         }
90 90
 
91 91
         $request->setResult($details);
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/Factory/TaxonExampleFactory.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Sylius\Bundle\CoreBundle\Fixture\Factory;
13 13
 
14
-use Doctrine\Common\Persistence\ObjectManager;
15 14
 use Sylius\Component\Core\Formatter\StringInflector;
16 15
 use Sylius\Component\Core\Model\TaxonInterface;
17 16
 use Sylius\Component\Locale\Model\LocaleInterface;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @return array
97
+     * @return \Generator
98 98
      */
99 99
     private function getLocales()
100 100
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\CoreBundle\Fixture\Factory;
15 15
 
Please login to merge, or discard this patch.