Completed
Push — phpspec-7 ( 2faf6a )
by Kamil
62:22 queued 34:00
created
src/Sylius/Component/Customer/Model/CustomerInterface.php 1 patch
Doc Comments   +44 added lines patch added patch discarded remove patch
@@ -24,35 +24,64 @@  discard block
 block discarded – undo
24 24
 
25 25
     public const FEMALE_GENDER = 'f';
26 26
 
27
+    /**
28
+     * @return string|null
29
+     */
27 30
     public function getEmail(): ?string;
28 31
 
32
+    /**
33
+     * @return void
34
+     */
29 35
     public function setEmail(?string $email): void;
30 36
 
31 37
     /**
32 38
      * Gets normalized email (should be used in search and sort queries).
39
+     * @return string|null
33 40
      */
34 41
     public function getEmailCanonical(): ?string;
35 42
 
43
+    /**
44
+     * @return void
45
+     */
36 46
     public function setEmailCanonical(?string $emailCanonical): void;
37 47
 
38 48
     public function getFullName(): string;
39 49
 
50
+    /**
51
+     * @return string|null
52
+     */
40 53
     public function getFirstName(): ?string;
41 54
 
55
+    /**
56
+     * @return void
57
+     */
42 58
     public function setFirstName(?string $firstName): void;
43 59
 
60
+    /**
61
+     * @return string|null
62
+     */
44 63
     public function getLastName(): ?string;
45 64
 
65
+    /**
66
+     * @return void
67
+     */
46 68
     public function setLastName(?string $lastName): void;
47 69
 
70
+    /**
71
+     * @return \DateTimeInterface|null
72
+     */
48 73
     public function getBirthday(): ?\DateTimeInterface;
49 74
 
75
+    /**
76
+     * @return void
77
+     */
50 78
     public function setBirthday(?\DateTimeInterface $birthday): void;
51 79
 
52 80
     public function getGender(): string;
53 81
 
54 82
     /**
55 83
      * You should use interface constants for that.
84
+     * @return void
56 85
      */
57 86
     public function setGender(string $gender): void;
58 87
 
@@ -60,15 +89,30 @@  discard block
 block discarded – undo
60 89
 
61 90
     public function isFemale(): bool;
62 91
 
92
+    /**
93
+     * @return CustomerGroupInterface|null
94
+     */
63 95
     public function getGroup(): ?CustomerGroupInterface;
64 96
 
97
+    /**
98
+     * @return void
99
+     */
65 100
     public function setGroup(?CustomerGroupInterface $group): void;
66 101
 
102
+    /**
103
+     * @return string|null
104
+     */
67 105
     public function getPhoneNumber(): ?string;
68 106
 
107
+    /**
108
+     * @return void
109
+     */
69 110
     public function setPhoneNumber(?string $phoneNumber): void;
70 111
 
71 112
     public function isSubscribedToNewsletter(): bool;
72 113
 
114
+    /**
115
+     * @return void
116
+     */
73 117
     public function setSubscribedToNewsletter(bool $subscribedToNewsletter): void;
74 118
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Review/Model/ReviewInterface.php 1 patch
Doc Comments   +38 added lines patch added patch discarded remove patch
@@ -24,27 +24,65 @@
 block discarded – undo
24 24
 
25 25
     public const STATUS_REJECTED = 'rejected';
26 26
 
27
+    /**
28
+     * @return string
29
+     */
27 30
     public function getTitle(): ?string;
28 31
 
32
+    /**
33
+     * @return void
34
+     */
29 35
     public function setTitle(?string $title): void;
30 36
 
37
+    /**
38
+     * @return integer
39
+     */
31 40
     public function getRating(): ?int;
32 41
 
42
+    /**
43
+     * @return void
44
+     */
33 45
     public function setRating(?int $rating): void;
34 46
 
47
+    /**
48
+     * @return string
49
+     */
35 50
     public function getComment(): ?string;
36 51
 
52
+    /**
53
+     * @return void
54
+     */
37 55
     public function setComment(?string $comment): void;
38 56
 
57
+    /**
58
+     * @return ReviewerInterface
59
+     */
39 60
     public function getAuthor(): ?ReviewerInterface;
40 61
 
62
+    /**
63
+     * @return void
64
+     */
41 65
     public function setAuthor(?ReviewerInterface $author): void;
42 66
 
67
+    /**
68
+     * @return string
69
+     */
43 70
     public function getStatus(): ?string;
44 71
 
72
+    /**
73
+     * @return void
74
+     */
45 75
     public function setStatus(?string $status): void;
46 76
 
77
+    /**
78
+     * @return ReviewableInterface
79
+     */
47 80
     public function getReviewSubject(): ?ReviewableInterface;
48 81
 
82
+    /**
83
+     * @param ReviewableInterface $reviewSubject
84
+     *
85
+     * @return void
86
+     */
49 87
     public function setReviewSubject(?ReviewableInterface $reviewSubject): void;
50 88
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Repository/AvatarImageRepositoryInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,5 +18,8 @@
 block discarded – undo
18 18
 
19 19
 interface AvatarImageRepositoryInterface extends RepositoryInterface
20 20
 {
21
+    /**
22
+     * @return \Sylius\Component\Resource\Model\ResourceInterface
23
+     */
21 24
     public function findOneByOwnerId(string $id): ?ImageInterface;
22 25
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Payment/IndexPageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -17,15 +17,27 @@
 block discarded – undo
17 17
 
18 18
 interface IndexPageInterface extends BaseIndexPageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function chooseStateToFilter(string $paymentState): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function completePaymentOfOrderWithNumber(string $orderNumber): void;
23 29
 
24 30
     public function getPaymentStateByOrderNumber(string $orderNumber): string;
25 31
 
26 32
     public function isPaymentWithOrderNumberInPosition(string $orderNumber, int $position): bool;
27 33
 
34
+    /**
35
+     * @return void
36
+     */
28 37
     public function showOrderPageForNthPayment(int $position): void;
29 38
 
39
+    /**
40
+     * @return void
41
+     */
30 42
     public function chooseChannelFilter(string $channelName): void;
31 43
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/ShowPageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -24,11 +24,23 @@
 block discarded – undo
24 24
 
25 25
     public function isShowInShopButtonDisabled(): bool;
26 26
 
27
+    /**
28
+     * @return void
29
+     */
27 30
     public function showProductInChannel(string $channel): void;
28 31
 
32
+    /**
33
+     * @return void
34
+     */
29 35
     public function showProductInSingleChannel(): void;
30 36
 
37
+    /**
38
+     * @return void
39
+     */
31 40
     public function showProductEditPage(): void;
32 41
 
42
+    /**
43
+     * @return void
44
+     */
33 45
     public function showVariantEditPage(ProductVariantInterface $variant): void;
34 46
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/Model/AttributeTranslationInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -18,7 +18,13 @@
 block discarded – undo
18 18
 
19 19
 interface AttributeTranslationInterface extends ResourceInterface, TranslationInterface
20 20
 {
21
+    /**
22
+     * @return string|null
23
+     */
21 24
     public function getName(): ?string;
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function setName(?string $name): void;
24 30
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTaxonInterface.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -17,15 +17,33 @@
 block discarded – undo
17 17
 
18 18
 interface ProductTaxonInterface extends ResourceInterface
19 19
 {
20
+    /**
21
+     * @return ProductInterface|null
22
+     */
20 23
     public function getProduct(): ?ProductInterface;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function setProduct(?ProductInterface $product): void;
23 29
 
30
+    /**
31
+     * @return TaxonInterface|null
32
+     */
24 33
     public function getTaxon(): ?TaxonInterface;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function setTaxon(?TaxonInterface $taxon): void;
27 39
 
40
+    /**
41
+     * @return integer|null
42
+     */
28 43
     public function getPosition(): ?int;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function setPosition(?int $position): void;
31 49
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Customer/Model/CustomerGroupInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -18,7 +18,13 @@
 block discarded – undo
18 18
 
19 19
 interface CustomerGroupInterface extends ResourceInterface, CodeAwareInterface
20 20
 {
21
+    /**
22
+     * @return string|null
23
+     */
21 24
     public function getName(): ?string;
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function setName(?string $name): void;
24 30
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Payment/Model/PaymentMethodTranslationInterface.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -18,15 +18,33 @@
 block discarded – undo
18 18
 
19 19
 interface PaymentMethodTranslationInterface extends ResourceInterface, TranslationInterface
20 20
 {
21
+    /**
22
+     * @return string|null
23
+     */
21 24
     public function getName(): ?string;
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function setName(?string $name): void;
24 30
 
31
+    /**
32
+     * @return string|null
33
+     */
25 34
     public function getDescription(): ?string;
26 35
 
36
+    /**
37
+     * @return void
38
+     */
27 39
     public function setDescription(?string $description): void;
28 40
 
41
+    /**
42
+     * @return string|null
43
+     */
29 44
     public function getInstructions(): ?string;
30 45
 
46
+    /**
47
+     * @return void
48
+     */
31 49
     public function setInstructions(?string $instructions): void;
32 50
 }
Please login to merge, or discard this patch.