Completed
Push — 1.2-symfony4-packages ( 39ce77...14945a )
by Kamil
18:11
created
src/Sylius/Behat/Page/Admin/Product/IndexPerTaxonPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -30,8 +30,12 @@
 block discarded – undo
30 30
     /**
31 31
      * @param string $productName
32 32
      * @param int $position
33
+     * @return void
33 34
      */
34 35
     public function setPositionOfProduct($productName, $position);
35 36
 
37
+    /**
38
+     * @return void
39
+     */
36 40
     public function savePositions();
37 41
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/IndexPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -38,8 +38,12 @@
 block discarded – undo
38 38
     /**
39 39
      * @param string $name
40 40
      * @param int $position
41
+     * @return void
41 42
      */
42 43
     public function setPosition($name, $position);
43 44
 
45
+    /**
46
+     * @return void
47
+     */
44 48
     public function savePositions();
45 49
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Mailer/Sender/SenderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
      * @param array $data
25 25
      * @param array $attachments
26 26
      * @param array $replyTo
27
+     * @return void
27 28
      */
28 29
     public function send(string $code, array $recipients, array $data = [], array $attachments = [], array $replyTo = []): void;
29 30
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductAttribute/CreatePageInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -23,12 +23,14 @@  discard block
 block discarded – undo
23 23
 {
24 24
     /**
25 25
      * @param string $code
26
+     * @return void
26 27
      */
27 28
     public function specifyCode($code);
28 29
 
29 30
     /**
30 31
      * @param string $name
31 32
      * @param string $language
33
+     * @return void
32 34
      */
33 35
     public function nameIt($name, $language);
34 36
 
@@ -40,19 +42,25 @@  discard block
 block discarded – undo
40 42
     /**
41 43
      * @param string $value
42 44
      * @param string $localeCode
45
+     * @return void
43 46
      */
44 47
     public function addAttributeValue(string $value, string $localeCode): void;
45 48
 
46 49
     /**
47 50
      * @param int $min
51
+     * @return void
48 52
      */
49 53
     public function specifyMinValue(int $min): void;
50 54
 
51 55
     /**
52 56
      * @param int $max
57
+     * @return void
53 58
      */
54 59
     public function specifyMaxValue(int $max): void;
55 60
 
61
+    /**
62
+     * @return void
63
+     */
56 64
     public function checkMultiple(): void;
57 65
 
58 66
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductAttribute/UpdatePageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * @param string $name
25 25
      * @param string $language
26
+     * @return void
26 27
      */
27 28
     public function changeName($name, $language);
28 29
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
     /**
40 41
      * @param string $oldValue
41 42
      * @param string $newValue
43
+     * @return void
42 44
      */
43 45
     public function changeAttributeValue(string $oldValue, string $newValue): void;
44 46
 
@@ -52,11 +54,13 @@  discard block
 block discarded – undo
52 54
     /**
53 55
      * @param string $value
54 56
      * @param string $localeCode
57
+     * @return void
55 58
      */
56 59
     public function addAttributeValue(string $value, string $localeCode): void;
57 60
 
58 61
     /**
59 62
      * @param string $value
63
+     * @return void
60 64
      */
61 65
     public function deleteAttributeValue(string $value): void;
62 66
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/ProductContext.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -198,6 +198,7 @@
 block discarded – undo
198 198
 
199 199
     /**
200 200
      * @Given /^(this product) is(?:| also) priced at ("[^"]+") in ("[^"]+" channel)$/
201
+     * @param integer $price
201 202
      */
202 203
     public function thisProductIsAlsoPricedAtInChannel(ProductInterface $product, $price, ChannelInterface $channel)
203 204
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/Model/AttributeInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * @param string|null $name
40
+     * @return void
40 41
      */
41 42
     public function setName(?string $name): void;
42 43
 
@@ -47,6 +48,7 @@  discard block
 block discarded – undo
47 48
 
48 49
     /**
49 50
      * @param string|null $type
51
+     * @return void
50 52
      */
51 53
     public function setType(?string $type): void;
52 54
 
@@ -57,6 +59,7 @@  discard block
 block discarded – undo
57 59
 
58 60
     /**
59 61
      * @param array $configuration
62
+     * @return void
60 63
      */
61 64
     public function setConfiguration(array $configuration): void;
62 65
 
@@ -67,6 +70,7 @@  discard block
 block discarded – undo
67 70
 
68 71
     /**
69 72
      * @param string $storageType
73
+     * @return void
70 74
      */
71 75
     public function setStorageType(string $storageType): void;
72 76
 
@@ -77,6 +81,7 @@  discard block
 block discarded – undo
77 81
 
78 82
     /**
79 83
      * @param int|null $position
84
+     * @return void
80 85
      */
81 86
     public function setPosition(?int $position): void;
82 87
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/CustomerInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -35,16 +35,19 @@  discard block
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param AddressInterface|null $defaultAddress
38
+     * @return void
38 39
      */
39 40
     public function setDefaultAddress(?AddressInterface $defaultAddress): void;
40 41
 
41 42
     /**
42 43
      * @param AddressInterface $address
44
+     * @return void
43 45
      */
44 46
     public function addAddress(AddressInterface $address): void;
45 47
 
46 48
     /**
47 49
      * @param AddressInterface $address
50
+     * @return void
48 51
      */
49 52
     public function removeAddress(AddressInterface $address): void;
50 53
 
@@ -72,6 +75,7 @@  discard block
 block discarded – undo
72 75
 
73 76
     /**
74 77
      * @param ShopUserInterface|UserInterface|null $user
78
+     * @return void
75 79
      */
76 80
     public function setUser(?UserInterface $user);
77 81
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Payment/Model/PaymentMethodInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -32,31 +32,37 @@  discard block
 block discarded – undo
32 32
 {
33 33
     /**
34 34
      * {@inheritdoc}
35
+     * @return string|null
35 36
      */
36 37
     public function getName(): ?string;
37 38
 
38 39
     /**
39 40
      * {@inheritdoc}
41
+     * @return void
40 42
      */
41 43
     public function setName(?string $name): void;
42 44
 
43 45
     /**
44 46
      * {@inheritdoc}
47
+     * @return string|null
45 48
      */
46 49
     public function getDescription(): ?string;
47 50
 
48 51
     /**
49 52
      * {@inheritdoc}
53
+     * @return void
50 54
      */
51 55
     public function setDescription(?string $description): void;
52 56
 
53 57
     /**
54 58
      * {@inheritdoc}
59
+     * @return string|null
55 60
      */
56 61
     public function getInstructions(): ?string;
57 62
 
58 63
     /**
59 64
      * {@inheritdoc}
65
+     * @return void
60 66
      */
61 67
     public function setInstructions(?string $instructions): void;
62 68
 
@@ -67,6 +73,7 @@  discard block
 block discarded – undo
67 73
 
68 74
     /**
69 75
      * @param string|null $environment
76
+     * @return void
70 77
      */
71 78
     public function setEnvironment(?string $environment): void;
72 79
 
@@ -77,6 +84,7 @@  discard block
 block discarded – undo
77 84
 
78 85
     /**
79 86
      * @param int|null $position
87
+     * @return void
80 88
      */
81 89
     public function setPosition(?int $position): void;
82 90
 
Please login to merge, or discard this patch.