@@ -16,8 +16,8 @@ |
||
| 16 | 16 | use Doctrine\Common\Collections\ArrayCollection; |
| 17 | 17 | use PhpSpec\ObjectBehavior; |
| 18 | 18 | use Sylius\Component\Review\Calculator\ReviewableRatingCalculatorInterface; |
| 19 | -use Sylius\Component\Review\Model\ReviewableInterface; |
|
| 20 | 19 | use Sylius\Component\Review\Model\ReviewInterface; |
| 20 | +use Sylius\Component\Review\Model\ReviewableInterface; |
|
| 21 | 21 | |
| 22 | 22 | final class AverageRatingCalculatorSpec extends ObjectBehavior |
| 23 | 23 | { |
@@ -15,5 +15,8 @@ |
||
| 15 | 15 | |
| 16 | 16 | interface CanonicalizerInterface |
| 17 | 17 | { |
| 18 | + /** |
|
| 19 | + * @return string |
|
| 20 | + */ |
|
| 18 | 21 | public function canonicalize(?string $string): ?string; |
| 19 | 22 | } |
@@ -20,6 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * @throws NotificationExpectationMismatchException |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function checkNotification(string $message, NotificationType $type): void; |
| 25 | 26 | } |
@@ -17,6 +17,7 @@ |
||
| 17 | 17 | { |
| 18 | 18 | /** |
| 19 | 19 | * {@inheritdoc} |
| 20 | + * @param \UnexpectedValueException $messageOrPreviousException |
|
| 20 | 21 | */ |
| 21 | 22 | public function __construct($messageOrPreviousException = null, ?\Throwable $previousException = null) |
| 22 | 23 | { |
@@ -1,4 +1,4 @@ |
||
| 1 | -<?php declare(strict_types = 1); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace Sylius\Migrations; |
| 4 | 4 | |
@@ -25,7 +25,8 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | public function it_does_not_crash(): void |
| 27 | 27 | { |
| 28 | - $class = new class() extends Bundle { |
|
| 28 | + $class = new class() extends Bundle |
|
| 29 | + { |
|
| 29 | 30 | use SyliusPluginTrait; |
| 30 | 31 | }; |
| 31 | 32 | |
@@ -19,16 +19,19 @@ |
||
| 19 | 19 | { |
| 20 | 20 | /** |
| 21 | 21 | * @param string $code |
| 22 | + * @return void |
|
| 22 | 23 | */ |
| 23 | 24 | public function specifyCode($code); |
| 24 | 25 | |
| 25 | 26 | /** |
| 26 | 27 | * @param string $name |
| 28 | + * @return void |
|
| 27 | 29 | */ |
| 28 | 30 | public function nameIt($name); |
| 29 | 31 | |
| 30 | 32 | /** |
| 31 | 33 | * @param string $description |
| 34 | + * @return void |
|
| 32 | 35 | */ |
| 33 | 36 | public function specifyDescription($description); |
| 34 | 37 | } |
@@ -87,10 +87,10 @@ |
||
| 87 | 87 | if (isset($sorting['price'])) { |
| 88 | 88 | // Another hack, the subquery to get the first position variant |
| 89 | 89 | $subQuery = $this->createQueryBuilder('m') |
| 90 | - ->select('min(v.position)') |
|
| 91 | - ->innerJoin('m.variants', 'v') |
|
| 92 | - ->andWhere('m.id = :product_id') |
|
| 93 | - ; |
|
| 90 | + ->select('min(v.position)') |
|
| 91 | + ->innerJoin('m.variants', 'v') |
|
| 92 | + ->andWhere('m.id = :product_id') |
|
| 93 | + ; |
|
| 94 | 94 | |
| 95 | 95 | $queryBuilder |
| 96 | 96 | ->innerJoin('o.variants', 'variant') |
@@ -16,12 +16,12 @@ |
||
| 16 | 16 | use Doctrine\ORM\EntityManager; |
| 17 | 17 | use Doctrine\ORM\Mapping; |
| 18 | 18 | use Doctrine\ORM\QueryBuilder; |
| 19 | +use SyliusLabs\AssociationHydrator\AssociationHydrator; |
|
| 19 | 20 | use Sylius\Bundle\ProductBundle\Doctrine\ORM\ProductRepository as BaseProductRepository; |
| 20 | 21 | use Sylius\Component\Core\Model\ChannelInterface; |
| 21 | 22 | use Sylius\Component\Core\Model\ProductInterface; |
| 22 | 23 | use Sylius\Component\Core\Model\TaxonInterface; |
| 23 | 24 | use Sylius\Component\Core\Repository\ProductRepositoryInterface; |
| 24 | -use SyliusLabs\AssociationHydrator\AssociationHydrator; |
|
| 25 | 25 | |
| 26 | 26 | class ProductRepository extends BaseProductRepository implements ProductRepositoryInterface |
| 27 | 27 | { |
@@ -13,21 +13,47 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function checkValidationMessageFor(string $element, string $message): bool; |
| 15 | 15 | |
| 16 | + /** |
|
| 17 | + * @return void |
|
| 18 | + */ |
|
| 16 | 19 | public function register(): void; |
| 17 | 20 | |
| 21 | + /** |
|
| 22 | + * @return void |
|
| 23 | + */ |
|
| 18 | 24 | public function specifyEmail(?string $email): void; |
| 19 | 25 | |
| 20 | 26 | public function getEmail(): string; |
| 21 | 27 | |
| 28 | + /** |
|
| 29 | + * @return void |
|
| 30 | + */ |
|
| 22 | 31 | public function specifyFirstName(?string $firstName): void; |
| 23 | 32 | |
| 33 | + /** |
|
| 34 | + * @return void |
|
| 35 | + */ |
|
| 24 | 36 | public function specifyLastName(?string $lastName): void; |
| 25 | 37 | |
| 38 | + /** |
|
| 39 | + * @return void |
|
| 40 | + */ |
|
| 26 | 41 | public function specifyPassword(?string $password): void; |
| 27 | 42 | |
| 43 | + /** |
|
| 44 | + * @return void |
|
| 45 | + */ |
|
| 28 | 46 | public function specifyPhoneNumber(string $phoneNumber): void; |
| 29 | 47 | |
| 48 | + /** |
|
| 49 | + * @param string|null $password |
|
| 50 | + * |
|
| 51 | + * @return void |
|
| 52 | + */ |
|
| 30 | 53 | public function verifyPassword(?string $password): void; |
| 31 | 54 | |
| 55 | + /** |
|
| 56 | + * @return void |
|
| 57 | + */ |
|
| 32 | 58 | public function subscribeToTheNewsletter(): void; |
| 33 | 59 | } |