@@ -14,7 +14,6 @@ |
||
| 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]> |
@@ -23,11 +23,13 @@ discard block |
||
| 23 | 23 | /** |
| 24 | 24 | * @param string $description |
| 25 | 25 | * @param string $languageCode |
| 26 | + * @return void |
|
| 26 | 27 | */ |
| 27 | 28 | public function describeItAs($description, $languageCode); |
| 28 | 29 | |
| 29 | 30 | /** |
| 30 | 31 | * @param TaxonInterface $taxon |
| 32 | + * @return void |
|
| 31 | 33 | */ |
| 32 | 34 | public function chooseParent(TaxonInterface $taxon); |
| 33 | 35 | |
@@ -39,12 +41,14 @@ discard block |
||
| 39 | 41 | /** |
| 40 | 42 | * @param string $name |
| 41 | 43 | * @param string $languageCode |
| 44 | + * @return void |
|
| 42 | 45 | */ |
| 43 | 46 | public function nameIt($name, $languageCode); |
| 44 | 47 | |
| 45 | 48 | /** |
| 46 | 49 | * @param string $slug |
| 47 | 50 | * @param string $languageCode |
| 51 | + * @return void |
|
| 48 | 52 | */ |
| 49 | 53 | public function specifySlug($slug, $languageCode); |
| 50 | 54 | |
@@ -56,6 +60,7 @@ discard block |
||
| 56 | 60 | /** |
| 57 | 61 | * @param string $path |
| 58 | 62 | * @param string $code |
| 63 | + * @return void |
|
| 59 | 64 | */ |
| 60 | 65 | public function attachImage($path, $code = null); |
| 61 | 66 | |
@@ -75,13 +80,18 @@ discard block |
||
| 75 | 80 | |
| 76 | 81 | /** |
| 77 | 82 | * @param string $code |
| 83 | + * @return void |
|
| 78 | 84 | */ |
| 79 | 85 | public function removeImageWithCode($code); |
| 80 | 86 | |
| 87 | + /** |
|
| 88 | + * @return void |
|
| 89 | + */ |
|
| 81 | 90 | public function removeFirstImage(); |
| 82 | 91 | |
| 83 | 92 | /** |
| 84 | 93 | * @param string $languageCode |
| 94 | + * @return void |
|
| 85 | 95 | */ |
| 86 | 96 | public function enableSlugModification($languageCode = 'en_US'); |
| 87 | 97 | |
@@ -93,6 +103,7 @@ discard block |
||
| 93 | 103 | /** |
| 94 | 104 | * @param string $code |
| 95 | 105 | * @param string $path |
| 106 | + * @return void |
|
| 96 | 107 | */ |
| 97 | 108 | public function changeImageWithCode($code, $path); |
| 98 | 109 | |
@@ -126,6 +137,7 @@ discard block |
||
| 126 | 137 | |
| 127 | 138 | /** |
| 128 | 139 | * @param string $locale |
| 140 | + * @return void |
|
| 129 | 141 | */ |
| 130 | 142 | public function activateLanguageTab($locale); |
| 131 | 143 | } |
@@ -20,8 +20,12 @@ |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * @param string $shippingMethod |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function selectShippingMethod($shippingMethod); |
| 25 | 26 | |
| 27 | + /** |
|
| 28 | + * @return void |
|
| 29 | + */ |
|
| 26 | 30 | public function continueCheckout(); |
| 27 | 31 | } |
@@ -12,7 +12,6 @@ |
||
| 12 | 12 | namespace Sylius\Behat\Page\Admin\Product; |
| 13 | 13 | |
| 14 | 14 | use Sylius\Behat\Page\Admin\Crud\IndexPageInterface as CrudIndexPageInterface; |
| 15 | -use Sylius\Component\Core\Model\ProductInterface; |
|
| 16 | 15 | |
| 17 | 16 | /** |
| 18 | 17 | * @author Anna Walasek <[email protected]> |
@@ -27,6 +27,7 @@ |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param string $value |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setValue($value); |
| 32 | 33 | } |
@@ -29,7 +29,7 @@ |
||
| 29 | 29 | { |
| 30 | 30 | /** |
| 31 | 31 | * @param Request $request |
| 32 | - * @return \Symfony\Component\HttpFoundation\RedirectResponse |
|
| 32 | + * @return JsonResponse |
|
| 33 | 33 | */ |
| 34 | 34 | public function updatePositionsAction(Request $request) |
| 35 | 35 | { |
@@ -11,7 +11,6 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Sylius\Bundle\CoreBundle\Controller; |
| 13 | 13 | |
| 14 | -use Sylius\Bundle\ResourceBundle\Controller\RedirectHandlerInterface; |
|
| 15 | 14 | use Sylius\Bundle\ResourceBundle\Controller\ResourceController; |
| 16 | 15 | use Sylius\Component\Core\Model\ProductTaxonInterface; |
| 17 | 16 | use Sylius\Component\Resource\ResourceActions; |
@@ -14,11 +14,9 @@ |
||
| 14 | 14 | use Doctrine\Common\Collections\ArrayCollection; |
| 15 | 15 | use Doctrine\Common\Collections\Collection; |
| 16 | 16 | use PhpSpec\ObjectBehavior; |
| 17 | -use Prophecy\Argument; |
|
| 18 | 17 | use Sylius\Bundle\CoreBundle\Form\DataTransformer\ProductTaxonCollectionToTaxonCollectionTransformer; |
| 19 | 18 | use Sylius\Component\Core\Model\ProductTaxonInterface; |
| 20 | 19 | use Sylius\Component\Core\Model\TaxonInterface; |
| 21 | -use Sylius\Component\Product\Model\ProductInterface; |
|
| 22 | 20 | use Sylius\Component\Resource\Exception\UnexpectedTypeException; |
| 23 | 21 | use Sylius\Component\Resource\Factory\FactoryInterface; |
| 24 | 22 | use Symfony\Component\Form\DataTransformerInterface; |
@@ -39,6 +39,7 @@ discard block |
||
| 39 | 39 | * Sets all option values. |
| 40 | 40 | * |
| 41 | 41 | * @param Collection $optionValues |
| 42 | + * @return void |
|
| 42 | 43 | */ |
| 43 | 44 | public function setValues(Collection $optionValues); |
| 44 | 45 | |
@@ -46,6 +47,7 @@ discard block |
||
| 46 | 47 | * Adds option value. |
| 47 | 48 | * |
| 48 | 49 | * @param OptionValueInterface $optionValue |
| 50 | + * @return void |
|
| 49 | 51 | */ |
| 50 | 52 | public function addValue(OptionValueInterface $optionValue); |
| 51 | 53 | |
@@ -53,6 +55,7 @@ discard block |
||
| 53 | 55 | * Removes option value. |
| 54 | 56 | * |
| 55 | 57 | * @param OptionValueInterface $optionValue |
| 58 | + * @return void |
|
| 56 | 59 | */ |
| 57 | 60 | public function removeValue(OptionValueInterface $optionValue); |
| 58 | 61 | |
@@ -27,6 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param OptionInterface $option |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setOption(OptionInterface $option = null); |
| 32 | 33 | |
@@ -41,6 +42,7 @@ discard block |
||
| 41 | 42 | * Set internal value. |
| 42 | 43 | * |
| 43 | 44 | * @param string $value |
| 45 | + * @return void |
|
| 44 | 46 | */ |
| 45 | 47 | public function setValue($value); |
| 46 | 48 | |
@@ -27,6 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param OptionInterface $option |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setOption(OptionInterface $option = null); |
| 32 | 33 | |
@@ -41,6 +42,7 @@ discard block |
||
| 41 | 42 | * Set internal value. |
| 42 | 43 | * |
| 43 | 44 | * @param string $value |
| 45 | + * @return void |
|
| 44 | 46 | */ |
| 45 | 47 | public function setValue($value); |
| 46 | 48 | |