@@ -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 | } |
@@ -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 | } |
@@ -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 | } |
@@ -12,7 +12,6 @@ |
||
| 12 | 12 | namespace Sylius\Behat\Service; |
| 13 | 13 | |
| 14 | 14 | use Sylius\Component\Core\Model\AdminUserInterface; |
| 15 | -use Sylius\Component\Core\Model\ShopUserInterface; |
|
| 16 | 15 | |
| 17 | 16 | /** |
| 18 | 17 | * @author Arkadiusz Krakowiak <[email protected]> |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | - * @return array |
|
| 61 | + * @return string[] |
|
| 62 | 62 | */ |
| 63 | 63 | public function getRecipients() |
| 64 | 64 | { |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | 'targetEntity' => $associationEntity, |
| 83 | 83 | 'inversedBy' => 'associations', |
| 84 | 84 | 'joinColumns' => [[ |
| 85 | - 'name' => $subject.'_id', |
|
| 85 | + 'name' => $subject . '_id', |
|
| 86 | 86 | 'referencedColumnName' => $associationEntityMetadata->fieldMappings['id']['columnName'], |
| 87 | 87 | 'nullable' => false, |
| 88 | 88 | 'onDelete' => 'CASCADE', |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | 'onDelete' => 'CASCADE', |
| 113 | 113 | ]], |
| 114 | 114 | 'inverseJoinColumns' => [[ |
| 115 | - 'name' => $subject.'_id', |
|
| 115 | + 'name' => $subject . '_id', |
|
| 116 | 116 | 'referencedColumnName' => $associationEntityMetadata->fieldMappings['id']['columnName'], |
| 117 | 117 | 'nullable' => false, |
| 118 | 118 | 'unique' => false, |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | - * @return array |
|
| 61 | + * @return string[] |
|
| 62 | 62 | */ |
| 63 | 63 | public function getRecipients() |
| 64 | 64 | { |
@@ -87,7 +87,7 @@ |
||
| 87 | 87 | 'targetEntity' => $subjectClass, |
| 88 | 88 | 'inversedBy' => 'attributes', |
| 89 | 89 | 'joinColumns' => [[ |
| 90 | - 'name' => $subject.'_id', |
|
| 90 | + 'name' => $subject . '_id', |
|
| 91 | 91 | 'referencedColumnName' => $targetEntityMetadata->fieldMappings['id']['columnName'], |
| 92 | 92 | 'nullable' => false, |
| 93 | 93 | 'onDelete' => 'CASCADE', |
@@ -12,25 +12,11 @@ |
||
| 12 | 12 | namespace Sylius\Bundle\ContentBundle\DependencyInjection; |
| 13 | 13 | |
| 14 | 14 | use Sylius\Bundle\ContentBundle\Doctrine\ODM\PHPCR\StaticContentRepository; |
| 15 | -use Sylius\Bundle\ContentBundle\Document\ActionBlock; |
|
| 16 | -use Sylius\Bundle\ContentBundle\Document\ImagineBlock; |
|
| 17 | -use Sylius\Bundle\ContentBundle\Document\RedirectRoute; |
|
| 18 | -use Sylius\Bundle\ContentBundle\Document\ReferenceBlock; |
|
| 19 | 15 | use Sylius\Bundle\ContentBundle\Document\Route; |
| 20 | -use Sylius\Bundle\ContentBundle\Document\SimpleBlock; |
|
| 21 | -use Sylius\Bundle\ContentBundle\Document\SlideshowBlock; |
|
| 22 | 16 | use Sylius\Bundle\ContentBundle\Document\StaticContent; |
| 23 | -use Sylius\Bundle\ContentBundle\Document\StringBlock; |
|
| 24 | -use Sylius\Bundle\ContentBundle\Form\Type\ActionBlockType; |
|
| 25 | -use Sylius\Bundle\ContentBundle\Form\Type\ImagineBlockType; |
|
| 26 | -use Sylius\Bundle\ContentBundle\Form\Type\RedirectRouteType; |
|
| 27 | -use Sylius\Bundle\ContentBundle\Form\Type\ReferenceBlockType; |
|
| 28 | 17 | use Sylius\Bundle\ContentBundle\Form\Type\RouteType; |
| 29 | -use Sylius\Bundle\ContentBundle\Form\Type\SimpleBlockType; |
|
| 30 | -use Sylius\Bundle\ContentBundle\Form\Type\SlideshowBlockType; |
|
| 31 | 18 | use Sylius\Bundle\ContentBundle\Form\Type\StaticContentChoiceType; |
| 32 | 19 | use Sylius\Bundle\ContentBundle\Form\Type\StaticContentType; |
| 33 | -use Sylius\Bundle\ContentBundle\Form\Type\StringBlockType; |
|
| 34 | 20 | use Sylius\Bundle\ResourceBundle\Controller\ResourceController; |
| 35 | 21 | use Sylius\Bundle\ResourceBundle\SyliusResourceBundle; |
| 36 | 22 | use Sylius\Component\Resource\Factory\Factory; |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | - * @param $id |
|
| 49 | + * @param string $id |
|
| 50 | 50 | * |
| 51 | 51 | * @return object |
| 52 | 52 | */ |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | /** |
| 75 | - * @param array $headers |
|
| 75 | + * @param string[] $headers |
|
| 76 | 76 | * @param array $rows |
| 77 | 77 | * @param OutputInterface $output |
| 78 | 78 | */ |
@@ -144,9 +144,9 @@ discard block |
||
| 144 | 144 | /** |
| 145 | 145 | * @param OutputInterface $output |
| 146 | 146 | * @param string $question |
| 147 | - * @param array $constraints |
|
| 147 | + * @param \Symfony\Component\Validator\Constraints\NotBlank[] $constraints |
|
| 148 | 148 | * |
| 149 | - * @return mixed |
|
| 149 | + * @return string |
|
| 150 | 150 | */ |
| 151 | 151 | protected function askHidden(OutputInterface $output, $question, array $constraints = []) |
| 152 | 152 | { |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | * @param array $constraints |
| 160 | 160 | * @param mixed $default |
| 161 | 161 | * |
| 162 | - * @return mixed |
|
| 162 | + * @return string |
|
| 163 | 163 | */ |
| 164 | 164 | protected function ask(OutputInterface $output, $question, array $constraints = [], $default = null) |
| 165 | 165 | { |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | /** |
| 170 | - * @param mixed $value |
|
| 170 | + * @param string $value |
|
| 171 | 171 | * @param array $constraints |
| 172 | 172 | * |
| 173 | 173 | * @return bool |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | * @param string $default |
| 196 | 196 | * @param bool $hidden |
| 197 | 197 | * |
| 198 | - * @return mixed |
|
| 198 | + * @return string |
|
| 199 | 199 | */ |
| 200 | 200 | private function proceedAskRequest(OutputInterface $output, $question, array $constraints = [], $default = null, $hidden = false) |
| 201 | 201 | { |
@@ -215,7 +215,7 @@ |
||
| 215 | 215 | /** |
| 216 | 216 | * @param OutputInterface $output |
| 217 | 217 | * |
| 218 | - * @return mixed |
|
| 218 | + * @return string |
|
| 219 | 219 | */ |
| 220 | 220 | private function getAdministratorPassword(OutputInterface $output) |
| 221 | 221 | { |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | ->setDescription('Initialize default permissions & roles in the application.') |
| 31 | 31 | ->setHelp(<<<EOT |
| 32 | 32 | The <info>%command.name%</info> command initializes default RBAC setup. |
| 33 | -EOT |
|
| 33 | +eot |
|
| 34 | 34 | ) |
| 35 | 35 | ; |
| 36 | 36 | } |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | /** |
| 46 | 46 | * Gets customer based on currently logged user. |
| 47 | 47 | * |
| 48 | - * @return CustomerInterface|null |
|
| 48 | + * @return null|\Sylius\Component\Customer\Model\CustomerInterface |
|
| 49 | 49 | */ |
| 50 | 50 | public function getCustomer() |
| 51 | 51 | { |