@@ -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 | |
@@ -174,6 +174,8 @@ discard block |
||
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | /** |
| 177 | + * @param string $code |
|
| 178 | + * @param string $name |
|
| 177 | 179 | * @return ChannelInterface |
| 178 | 180 | */ |
| 179 | 181 | private function createChannel($code, $name) |
@@ -197,6 +199,7 @@ discard block |
||
| 197 | 199 | } |
| 198 | 200 | |
| 199 | 201 | /** |
| 202 | + * @param string $currencyCode |
|
| 200 | 203 | * @return CurrencyInterface |
| 201 | 204 | */ |
| 202 | 205 | private function provideCurrency($currencyCode = null) |
@@ -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\Component\Core\Test\Services; |
| 15 | 15 | |
@@ -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 | |
@@ -93,7 +93,7 @@ discard block |
||
| 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 |
||
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | /** |
| 106 | - * @return array |
|
| 106 | + * @return string[] |
|
| 107 | 107 | */ |
| 108 | 108 | private function getAvailableCountries() |
| 109 | 109 | { |
@@ -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\CoreBundle\Form\Extension; |
| 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 | |
@@ -12,7 +12,6 @@ |
||
| 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; |
@@ -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\Form\Type; |
| 15 | 15 | |