Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
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.
src/Sylius/Component/Product/Model/ProductAssociationTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -36,6 +36,7 @@
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param string|null $name
39
+     * @return void
39 40
      */
40 41
     public function setName(?string $name): void;
41 42
 
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductVariantInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -36,6 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param string|null $name
39
+     * @return void
39 40
      */
40 41
     public function setName(?string $name): void;
41 42
 
@@ -51,11 +52,13 @@  discard block
 block discarded – undo
51 52
 
52 53
     /**
53 54
      * @param ProductOptionValueInterface $optionValue
55
+     * @return void
54 56
      */
55 57
     public function addOptionValue(ProductOptionValueInterface $optionValue): void;
56 58
 
57 59
     /**
58 60
      * @param ProductOptionValueInterface $optionValue
61
+     * @return void
59 62
      */
60 63
     public function removeOptionValue(ProductOptionValueInterface $optionValue): void;
61 64
 
@@ -73,6 +76,7 @@  discard block
 block discarded – undo
73 76
 
74 77
     /**
75 78
      * @param ProductInterface|null $product
79
+     * @return void
76 80
      */
77 81
     public function setProduct(?ProductInterface $product): void;
78 82
 
@@ -83,6 +87,7 @@  discard block
 block discarded – undo
83 87
 
84 88
     /**
85 89
      * @param int|null $position
90
+     * @return void
86 91
      */
87 92
     public function setPosition(?int $position): void;
88 93
 
Please login to merge, or discard this patch.
src/Sylius/Component/Shipping/Model/ShippingMethodInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -44,6 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * @param string|null $name
47
+     * @return void
47 48
      */
48 49
     public function setName(?string $name): void;
49 50
 
@@ -54,6 +55,7 @@  discard block
 block discarded – undo
54 55
 
55 56
     /**
56 57
      * @param string|null $description
58
+     * @return void
57 59
      */
58 60
     public function setDescription(?string $description): void;
59 61
 
@@ -64,6 +66,7 @@  discard block
 block discarded – undo
64 66
 
65 67
     /**
66 68
      * @param int|null $position
69
+     * @return void
67 70
      */
68 71
     public function setPosition(?int $position): void;
69 72
 
@@ -74,6 +77,7 @@  discard block
 block discarded – undo
74 77
 
75 78
     /**
76 79
      * @param ShippingCategoryInterface|null $category
80
+     * @return void
77 81
      */
78 82
     public function setCategory(?ShippingCategoryInterface $category);
79 83
 
@@ -91,6 +95,7 @@  discard block
 block discarded – undo
91 95
 
92 96
     /**
93 97
      * @param int|null $categoryRequirement
98
+     * @return void
94 99
      */
95 100
     public function setCategoryRequirement(?int $categoryRequirement): void;
96 101
 
@@ -101,6 +106,7 @@  discard block
 block discarded – undo
101 106
 
102 107
     /**
103 108
      * @param string $calculator
109
+     * @return void
104 110
      */
105 111
     public function setCalculator(?string $calculator): void;
106 112
 
@@ -111,6 +117,7 @@  discard block
 block discarded – undo
111 117
 
112 118
     /**
113 119
      * @param array $configuration
120
+     * @return void
114 121
      */
115 122
     public function setConfiguration(array $configuration): void;
116 123
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Administrator/CreatePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -17,25 +17,32 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable();
21 24
 
22 25
     /**
23 26
      * @param string $username
27
+     * @return void
24 28
      */
25 29
     public function specifyUsername($username);
26 30
 
27 31
     /**
28 32
      * @param string $email
33
+     * @return void
29 34
      */
30 35
     public function specifyEmail($email);
31 36
 
32 37
     /**
33 38
      * @param string $password
39
+     * @return void
34 40
      */
35 41
     public function specifyPassword($password);
36 42
 
37 43
     /**
38 44
      * @param string $localeCode
45
+     * @return void
39 46
      */
40 47
     public function specifyLocale($localeCode);
41 48
 }
Please login to merge, or discard this patch.