Completed
Push — remove-codeowners ( c2a3b4 )
by Kamil
35:29 queued 21:05
created
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.
src/Sylius/Behat/Page/Admin/Channel/CreatePageInterface.php 1 patch
Doc Comments   +24 added lines patch added patch discarded remove patch
@@ -17,71 +17,95 @@
 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
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function disable();
23 29
 
24 30
     /**
25 31
      * @param string $name
32
+     * @return void
26 33
      */
27 34
     public function nameIt($name);
28 35
 
29 36
     /**
30 37
      * @param string $code
38
+     * @return void
31 39
      */
32 40
     public function specifyCode($code);
33 41
 
34 42
     /**
35 43
      * @param string $description
44
+     * @return void
36 45
      */
37 46
     public function describeItAs($description);
38 47
 
39 48
     /**
40 49
      * @param string $hostname
50
+     * @return void
41 51
      */
42 52
     public function setHostname($hostname);
43 53
 
44 54
     /**
45 55
      * @param string $contactEmail
56
+     * @return void
46 57
      */
47 58
     public function setContactEmail($contactEmail);
48 59
 
49 60
     /**
50 61
      * @param string $color
62
+     * @return void
51 63
      */
52 64
     public function defineColor($color);
53 65
 
54 66
     /**
55 67
      * @param string $language
68
+     * @return void
56 69
      */
57 70
     public function chooseLocale($language);
58 71
 
59 72
     /**
60 73
      * @param string $currencyCode
74
+     * @return void
61 75
      */
62 76
     public function chooseCurrency($currencyCode);
63 77
 
64 78
     /**
65 79
      * @param string $taxZone
80
+     * @return void
66 81
      */
67 82
     public function chooseDefaultTaxZone($taxZone);
68 83
 
69 84
     /**
70 85
      * @param string $locale
86
+     * @return void
71 87
      */
72 88
     public function chooseDefaultLocale($locale);
73 89
 
74 90
     /**
75 91
      * @param string $currency
92
+     * @return void
76 93
      */
77 94
     public function chooseBaseCurrency($currency);
78 95
 
79 96
     /**
80 97
      * @param string $taxCalculationStrategy
98
+     * @return void
81 99
      */
82 100
     public function chooseTaxCalculationStrategy($taxCalculationStrategy);
83 101
 
102
+    /**
103
+     * @return void
104
+     */
84 105
     public function allowToSkipShippingStep();
85 106
 
107
+    /**
108
+     * @return void
109
+     */
86 110
     public function allowToSkipPaymentStep();
87 111
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Channel/UpdatePageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -18,17 +18,25 @@  discard block
 block discarded – undo
18 18
 
19 19
 interface UpdatePageInterface extends BaseUpdatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function enable();
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function disable();
24 30
 
25 31
     /**
26 32
      * @param string $themeName
33
+     * @return void
27 34
      */
28 35
     public function setTheme($themeName);
29 36
 
30 37
     /**
31 38
      * @throws ElementNotFoundException
39
+     * @return void
32 40
      */
33 41
     public function unsetTheme();
34 42
 
@@ -39,6 +47,7 @@  discard block
 block discarded – undo
39 47
 
40 48
     /**
41 49
      * @param string $language
50
+     * @return void
42 51
      */
43 52
     public function chooseLocale($language);
44 53
 
@@ -51,6 +60,7 @@  discard block
 block discarded – undo
51 60
 
52 61
     /**
53 62
      * @param string $currencyCode
63
+     * @return void
54 64
      */
55 65
     public function chooseCurrency($currencyCode);
56 66
 
@@ -63,11 +73,13 @@  discard block
 block discarded – undo
63 73
 
64 74
     /**
65 75
      * @param string $taxZone
76
+     * @return void
66 77
      */
67 78
     public function chooseDefaultTaxZone($taxZone);
68 79
 
69 80
     /**
70 81
      * @param string $taxCalculationStrategy
82
+     * @return void
71 83
      */
72 84
     public function chooseTaxCalculationStrategy($taxCalculationStrategy);
73 85
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Country/UpdatePageInterface.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -17,8 +17,14 @@  discard block
 block discarded – undo
17 17
 
18 18
 interface UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable();
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function disable();
23 29
 
24 30
     /**
@@ -44,28 +50,36 @@  discard block
 block discarded – undo
44 50
      * @param string $name
45 51
      * @param string $code
46 52
      * @param string|null $abbreviation
53
+     * @return void
47 54
      */
48 55
     public function addProvince($name, $code, $abbreviation = null);
49 56
 
50 57
     /**
51 58
      * @param string $provinceName
59
+     * @return void
52 60
      */
53 61
     public function removeProvince($provinceName);
54 62
 
63
+    /**
64
+     * @return void
65
+     */
55 66
     public function clickAddProvinceButton();
56 67
 
57 68
     /**
58 69
      * @param string $provinceName
70
+     * @return void
59 71
      */
60 72
     public function nameProvince($provinceName);
61 73
 
62 74
     /**
63 75
      * @param string $provinceName
76
+     * @return void
64 77
      */
65 78
     public function removeProvinceName($provinceName);
66 79
 
67 80
     /**
68 81
      * @param string $provinceCode
82
+     * @return void
69 83
      */
70 84
     public function specifyProvinceCode($provinceCode);
71 85
 }
Please login to merge, or discard this patch.