@@ -28,7 +28,7 @@ |
||
| 28 | 28 | */ |
| 29 | 29 | public function load(array $config, ContainerBuilder $container) |
| 30 | 30 | { |
| 31 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 31 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 32 | 32 | $loader->load('services.xml'); |
| 33 | 33 | $loader->load('twig.xml'); |
| 34 | 34 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | */ |
| 29 | 29 | public function load(array $config, ContainerBuilder $container) |
| 30 | 30 | { |
| 31 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 31 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 32 | 32 | $loader->load('services.xml'); |
| 33 | 33 | $loader->load('twig.xml'); |
| 34 | 34 | } |
@@ -11,8 +11,6 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Sylius\Bundle\PayumBundle\DependencyInjection; |
| 13 | 13 | |
| 14 | -use Payum\Bundle\PayumBundle\DependencyInjection\MainConfiguration as PayumConfiguration; |
|
| 15 | -use Payum\Bundle\PayumBundle\DependencyInjection\PayumExtension; |
|
| 16 | 14 | use Sylius\Bundle\ResourceBundle\DependencyInjection\Extension\AbstractResourceExtension; |
| 17 | 15 | use Symfony\Component\Config\FileLocator; |
| 18 | 16 | use Symfony\Component\DependencyInjection\ContainerBuilder; |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace spec\Sylius\Component\Registry; |
| 13 | 13 | |
| 14 | -require_once __DIR__.'/Fixture/SampleServiceInterface.php'; |
|
| 14 | +require_once __DIR__ . '/Fixture/SampleServiceInterface.php'; |
|
| 15 | 15 | |
| 16 | 16 | use PhpSpec\ObjectBehavior; |
| 17 | 17 | use Prophecy\Argument; |
@@ -205,6 +205,7 @@ |
||
| 205 | 205 | * @Then the product :productName should appear in the shop |
| 206 | 206 | * @Then the product :productName should be in the shop |
| 207 | 207 | * @Then this product should still be named :productName |
| 208 | + * @param string $productName |
|
| 208 | 209 | */ |
| 209 | 210 | public function theProductShouldAppearInTheShop($productName) |
| 210 | 211 | { |
@@ -16,13 +16,13 @@ |
||
| 16 | 16 | use Sylius\Behat\NotificationType; |
| 17 | 17 | use Sylius\Behat\Page\Admin\Crud\CreatePageInterface; |
| 18 | 18 | use Sylius\Behat\Page\Admin\Crud\UpdatePageInterface; |
| 19 | +use Sylius\Behat\Page\Admin\ProductReview\IndexPageInterface as ProductReviewIndexPageInterface; |
|
| 19 | 20 | use Sylius\Behat\Page\Admin\Product\CreateConfigurableProductPageInterface; |
| 20 | 21 | use Sylius\Behat\Page\Admin\Product\CreateSimpleProductPageInterface; |
| 21 | 22 | use Sylius\Behat\Page\Admin\Product\IndexPageInterface; |
| 22 | 23 | use Sylius\Behat\Page\Admin\Product\IndexPerTaxonPageInterface; |
| 23 | 24 | use Sylius\Behat\Page\Admin\Product\UpdateConfigurableProductPageInterface; |
| 24 | 25 | use Sylius\Behat\Page\Admin\Product\UpdateSimpleProductPageInterface; |
| 25 | -use Sylius\Behat\Page\Admin\ProductReview\IndexPageInterface as ProductReviewIndexPageInterface; |
|
| 26 | 26 | use Sylius\Behat\Page\SymfonyPageInterface; |
| 27 | 27 | use Sylius\Behat\Service\NotificationCheckerInterface; |
| 28 | 28 | use Sylius\Behat\Service\Resolver\CurrentPageResolverInterface; |
@@ -150,6 +150,7 @@ discard block |
||
| 150 | 150 | |
| 151 | 151 | /** |
| 152 | 152 | * @Then the :productVariantCode variant of the :product product should appear in the shop |
| 153 | + * @param string $productVariantCode |
|
| 153 | 154 | */ |
| 154 | 155 | public function theProductVariantShouldAppearInTheShop($productVariantCode, ProductInterface $product) |
| 155 | 156 | { |
@@ -451,7 +452,7 @@ discard block |
||
| 451 | 452 | |
| 452 | 453 | /** |
| 453 | 454 | * @param string $element |
| 454 | - * @param $message |
|
| 455 | + * @param string $message |
|
| 455 | 456 | */ |
| 456 | 457 | private function assertValidationMessage($element, $message) |
| 457 | 458 | { |
@@ -166,7 +166,7 @@ |
||
| 166 | 166 | */ |
| 167 | 167 | public function iSetItsPriceTo($price = null, $channel = null) |
| 168 | 168 | { |
| 169 | - $this->createPage->specifyPrice($price, (null === $channel) ? $this->sharedStorage->get('channel') :$channel); |
|
| 169 | + $this->createPage->specifyPrice($price, (null === $channel) ? $this->sharedStorage->get('channel') : $channel); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | /** |
@@ -25,15 +25,20 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | public function hasValidationErrorWith($message); |
| 27 | 27 | |
| 28 | + /** |
|
| 29 | + * @return void |
|
| 30 | + */ |
|
| 28 | 31 | public function logIn(); |
| 29 | 32 | |
| 30 | 33 | /** |
| 31 | 34 | * @param string $password |
| 35 | + * @return void |
|
| 32 | 36 | */ |
| 33 | 37 | public function specifyPassword($password); |
| 34 | 38 | |
| 35 | 39 | /** |
| 36 | 40 | * @param string $userName |
| 41 | + * @return void |
|
| 37 | 42 | */ |
| 38 | 43 | public function specifyUserName($userName); |
| 39 | 44 | } |
@@ -39,25 +39,32 @@ |
||
| 39 | 39 | */ |
| 40 | 40 | public function checkGenerationValidation($message); |
| 41 | 41 | |
| 42 | + /** |
|
| 43 | + * @return void |
|
| 44 | + */ |
|
| 42 | 45 | public function generate(); |
| 43 | 46 | |
| 44 | 47 | /** |
| 45 | 48 | * @param int $amount |
| 49 | + * @return void |
|
| 46 | 50 | */ |
| 47 | 51 | public function specifyAmount($amount); |
| 48 | 52 | |
| 49 | 53 | /** |
| 50 | 54 | * @param int $codeLength |
| 55 | + * @return void |
|
| 51 | 56 | */ |
| 52 | 57 | public function specifyCodeLength($codeLength); |
| 53 | 58 | |
| 54 | 59 | /** |
| 55 | 60 | * @param \DateTime $date |
| 61 | + * @return void |
|
| 56 | 62 | */ |
| 57 | 63 | public function setExpiresAt(\DateTime $date); |
| 58 | 64 | |
| 59 | 65 | /** |
| 60 | 66 | * @param int $limit |
| 67 | + * @return void |
|
| 61 | 68 | */ |
| 62 | 69 | public function setUsageLimit($limit); |
| 63 | 70 | } |
@@ -36,11 +36,13 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | 38 | * @param string $locale |
| 39 | + * @return void |
|
| 39 | 40 | */ |
| 40 | 41 | public function setCurrentLocale($locale); |
| 41 | 42 | |
| 42 | 43 | /** |
| 43 | 44 | * @param string $locale |
| 45 | + * @return void |
|
| 44 | 46 | */ |
| 45 | 47 | public function setFallbackLocale($locale); |
| 46 | 48 | |
@@ -51,11 +53,13 @@ discard block |
||
| 51 | 53 | |
| 52 | 54 | /** |
| 53 | 55 | * @param TranslationInterface $translation |
| 56 | + * @return void |
|
| 54 | 57 | */ |
| 55 | 58 | public function addTranslation(TranslationInterface $translation); |
| 56 | 59 | |
| 57 | 60 | /** |
| 58 | 61 | * @param TranslationInterface $translation |
| 62 | + * @return void |
|
| 59 | 63 | */ |
| 60 | 64 | public function removeTranslation(TranslationInterface $translation); |
| 61 | 65 | } |
@@ -20,38 +20,48 @@ |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * @param string $name |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function specifyFirstName($name); |
| 25 | 26 | |
| 26 | 27 | /** |
| 27 | 28 | * @param string $name |
| 29 | + * @return void |
|
| 28 | 30 | */ |
| 29 | 31 | public function specifyLastName($name); |
| 30 | 32 | |
| 31 | 33 | /** |
| 32 | 34 | * @param string $email |
| 35 | + * @return void |
|
| 33 | 36 | */ |
| 34 | 37 | public function specifyEmail($email); |
| 35 | 38 | |
| 36 | 39 | /** |
| 37 | 40 | * @param string $birthday |
| 41 | + * @return void |
|
| 38 | 42 | */ |
| 39 | 43 | public function specifyBirthday($birthday); |
| 40 | 44 | |
| 41 | 45 | /** |
| 42 | 46 | * @param string $password |
| 47 | + * @return void |
|
| 43 | 48 | */ |
| 44 | 49 | public function specifyPassword($password); |
| 45 | 50 | |
| 46 | 51 | /** |
| 47 | 52 | * @param string $gender |
| 53 | + * @return void |
|
| 48 | 54 | */ |
| 49 | 55 | public function chooseGender($gender); |
| 50 | 56 | |
| 51 | 57 | /** |
| 52 | 58 | * @param string $group |
| 59 | + * @return void |
|
| 53 | 60 | */ |
| 54 | 61 | public function chooseGroup($group); |
| 55 | 62 | |
| 63 | + /** |
|
| 64 | + * @return void |
|
| 65 | + */ |
|
| 56 | 66 | public function selectCreateAccount(); |
| 57 | 67 | } |