@@ -21,6 +21,7 @@ discard block |
||
| 21 | 21 | { |
| 22 | 22 | /** |
| 23 | 23 | * @throws \RuntimeException |
| 24 | + * @return void |
|
| 24 | 25 | */ |
| 25 | 26 | public function chooseDifferentBillingAddress(); |
| 26 | 27 | |
@@ -39,21 +40,25 @@ discard block |
||
| 39 | 40 | |
| 40 | 41 | /** |
| 41 | 42 | * @param AddressInterface $billingAddress |
| 43 | + * @return void |
|
| 42 | 44 | */ |
| 43 | 45 | public function specifyBillingAddress(AddressInterface $billingAddress); |
| 44 | 46 | |
| 45 | 47 | /** |
| 46 | 48 | * @param string $province |
| 49 | + * @return void |
|
| 47 | 50 | */ |
| 48 | 51 | public function selectBillingAddressProvince($province); |
| 49 | 52 | |
| 50 | 53 | /** |
| 51 | 54 | * @param AddressInterface $shippingAddress |
| 55 | + * @return void |
|
| 52 | 56 | */ |
| 53 | 57 | public function specifyShippingAddress(AddressInterface $shippingAddress); |
| 54 | 58 | |
| 55 | 59 | /** |
| 56 | 60 | * @param string $province |
| 61 | + * @return void |
|
| 57 | 62 | */ |
| 58 | 63 | public function selectShippingAddressProvince($province); |
| 59 | 64 | |
@@ -62,15 +67,20 @@ discard block |
||
| 62 | 67 | */ |
| 63 | 68 | public function canSignIn(); |
| 64 | 69 | |
| 70 | + /** |
|
| 71 | + * @return void |
|
| 72 | + */ |
|
| 65 | 73 | public function signIn(); |
| 66 | 74 | |
| 67 | 75 | /** |
| 68 | 76 | * @param string $email |
| 77 | + * @return void |
|
| 69 | 78 | */ |
| 70 | 79 | public function specifyEmail($email); |
| 71 | 80 | |
| 72 | 81 | /** |
| 73 | 82 | * @param string $password |
| 83 | + * @return void |
|
| 74 | 84 | */ |
| 75 | 85 | public function specifyPassword($password); |
| 76 | 86 | |
@@ -86,17 +96,25 @@ discard block |
||
| 86 | 96 | */ |
| 87 | 97 | public function getShippingAddressCountry(); |
| 88 | 98 | |
| 99 | + /** |
|
| 100 | + * @return void |
|
| 101 | + */ |
|
| 89 | 102 | public function nextStep(); |
| 90 | 103 | |
| 104 | + /** |
|
| 105 | + * @return void |
|
| 106 | + */ |
|
| 91 | 107 | public function backToStore(); |
| 92 | 108 | |
| 93 | 109 | /** |
| 94 | 110 | * @param string $provinceName |
| 111 | + * @return void |
|
| 95 | 112 | */ |
| 96 | 113 | public function specifyBillingAddressProvince($provinceName); |
| 97 | 114 | |
| 98 | 115 | /** |
| 99 | 116 | * @param string $provinceName |
| 117 | + * @return void |
|
| 100 | 118 | */ |
| 101 | 119 | public function specifyShippingAddressProvince($provinceName); |
| 102 | 120 | |
@@ -112,11 +130,13 @@ discard block |
||
| 112 | 130 | |
| 113 | 131 | /** |
| 114 | 132 | * @param AddressInterface $address |
| 133 | + * @return void |
|
| 115 | 134 | */ |
| 116 | 135 | public function selectShippingAddressFromAddressBook(AddressInterface $address); |
| 117 | 136 | |
| 118 | 137 | /** |
| 119 | 138 | * @param AddressInterface $address |
| 139 | + * @return void |
|
| 120 | 140 | */ |
| 121 | 141 | public function selectBillingAddressFromAddressBook(AddressInterface $address); |
| 122 | 142 | |
@@ -9,7 +9,7 @@ |
||
| 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\Checkout; |
| 15 | 15 | |
@@ -22,6 +22,7 @@ discard block |
||
| 22 | 22 | { |
| 23 | 23 | /** |
| 24 | 24 | * @param string $customerName |
| 25 | + * @return boolean |
|
| 25 | 26 | */ |
| 26 | 27 | public function hasCustomer($customerName); |
| 27 | 28 | |
@@ -56,6 +57,7 @@ discard block |
||
| 56 | 57 | |
| 57 | 58 | /** |
| 58 | 59 | * @param string $code |
| 60 | + * @return void |
|
| 59 | 61 | */ |
| 60 | 62 | public function specifyTrackingCode($code); |
| 61 | 63 | |
@@ -68,6 +70,7 @@ discard block |
||
| 68 | 70 | |
| 69 | 71 | /** |
| 70 | 72 | * @param OrderInterface $order |
| 73 | + * @return void |
|
| 71 | 74 | */ |
| 72 | 75 | public function shipOrder(OrderInterface $order); |
| 73 | 76 | |
@@ -87,11 +90,13 @@ discard block |
||
| 87 | 90 | |
| 88 | 91 | /** |
| 89 | 92 | * @param OrderInterface $order |
| 93 | + * @return void |
|
| 90 | 94 | */ |
| 91 | 95 | public function completeOrderLastPayment(OrderInterface $order); |
| 92 | 96 | |
| 93 | 97 | /** |
| 94 | 98 | * @param OrderInterface $order |
| 99 | + * @return void |
|
| 95 | 100 | */ |
| 96 | 101 | public function refundOrderLastPayment(OrderInterface $order); |
| 97 | 102 | |
@@ -234,8 +239,14 @@ discard block |
||
| 234 | 239 | */ |
| 235 | 240 | public function getPaymentState(); |
| 236 | 241 | |
| 242 | + /** |
|
| 243 | + * @return void |
|
| 244 | + */ |
|
| 237 | 245 | public function cancelOrder(); |
| 238 | 246 | |
| 247 | + /** |
|
| 248 | + * @return void |
|
| 249 | + */ |
|
| 239 | 250 | public function deleteOrder(); |
| 240 | 251 | |
| 241 | 252 | /** |
@@ -9,7 +9,7 @@ |
||
| 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\Admin\Order; |
| 15 | 15 | |
@@ -33,11 +33,12 @@ discard block |
||
| 33 | 33 | /** |
| 34 | 34 | * @param string $key |
| 35 | 35 | * @param mixed $resource |
| 36 | + * @return void |
|
| 36 | 37 | */ |
| 37 | 38 | public function set($key, $resource); |
| 38 | 39 | |
| 39 | 40 | /** |
| 40 | - * @return mixed |
|
| 41 | + * @return string |
|
| 41 | 42 | */ |
| 42 | 43 | public function getLatestResource(); |
| 43 | 44 | |
@@ -45,6 +46,7 @@ discard block |
||
| 45 | 46 | * @param array $clipboard |
| 46 | 47 | * |
| 47 | 48 | * @throws \RuntimeException |
| 49 | + * @return void |
|
| 48 | 50 | */ |
| 49 | 51 | public function setClipboard(array $clipboard); |
| 50 | 52 | } |
@@ -9,7 +9,7 @@ |
||
| 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\Service; |
| 15 | 15 | |
@@ -12,7 +12,6 @@ |
||
| 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]> |
@@ -9,7 +9,7 @@ discard block |
||
| 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\Component\Product\Model; |
| 15 | 15 | |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | /** |
| 73 | 73 | * {@inheritdoc} |
| 74 | 74 | */ |
| 75 | - public function setCode(?string $code): void |
|
| 75 | + public function setCode(?string $code) : void |
|
| 76 | 76 | { |
| 77 | 77 | $this->code = $code; |
| 78 | 78 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | /** |
| 89 | 89 | * {@inheritdoc} |
| 90 | 90 | */ |
| 91 | - public function setOption(?ProductOptionInterface $option): void |
|
| 91 | + public function setOption(?ProductOptionInterface $option) : void |
|
| 92 | 92 | { |
| 93 | 93 | $this->option = $option; |
| 94 | 94 | } |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | /** |
| 105 | 105 | * {@inheritdoc} |
| 106 | 106 | */ |
| 107 | - public function setValue(?string $value): void |
|
| 107 | + public function setValue(?string $value) : void |
|
| 108 | 108 | { |
| 109 | 109 | $this->getTranslation()->setValue($value); |
| 110 | 110 | } |
@@ -15,8 +15,6 @@ |
||
| 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]> |
@@ -9,7 +9,7 @@ discard block |
||
| 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\AddressingBundle\DependencyInjection; |
| 15 | 15 | |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | public function load(array $config, ContainerBuilder $container): void |
| 33 | 33 | { |
| 34 | 34 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 35 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 35 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 36 | 36 | |
| 37 | 37 | $this->registerResources('sylius', $config['driver'], $config['resources'], $container); |
| 38 | 38 | |
@@ -24,6 +24,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -9,7 +9,7 @@ |
||
| 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 | |
@@ -13,8 +13,8 @@ |
||
| 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; |
@@ -9,7 +9,7 @@ |
||
| 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 | |
@@ -12,9 +12,6 @@ |
||
| 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; |
@@ -9,7 +9,7 @@ |
||
| 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 | |
@@ -13,7 +13,6 @@ |
||
| 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; |
@@ -9,7 +9,7 @@ |
||
| 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 | |