Completed
Push — 1.2-symfony4-packages ( 39ce77...14945a )
by Kamil
18:11
created
Sylius/Component/Core/Taxation/Strategy/TaxCalculationStrategyInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
     /**
25 25
      * @param OrderInterface $order
26 26
      * @param ZoneInterface $zone
27
+     * @return void
27 28
      */
28 29
     public function applyTaxes(OrderInterface $order, ZoneInterface $zone): void;
29 30
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Uploader/ImageUploaderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param ImageInterface $image
22
+     * @return void
22 23
      */
23 24
     public function upload(ImageInterface $image): void;
24 25
 
Please login to merge, or discard this patch.
Bundle/CoreBundle/Fixture/Factory/ProductAssociationTypeExampleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return iterable
136
+     * @return \Generator
137 137
      */
138 138
     private function getLocales(): iterable
139 139
     {
Please login to merge, or discard this patch.
Sylius/Bundle/CoreBundle/Fixture/Factory/ProductAttributeExampleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return iterable
136
+     * @return \Generator
137 137
      */
138 138
     private function getLocales(): iterable
139 139
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/Factory/ProductExampleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return iterable
136
+     * @return \Generator
137 137
      */
138 138
     private function getLocales(): iterable
139 139
     {
Please login to merge, or discard this patch.
Sylius/Bundle/CoreBundle/Fixture/Factory/ProductOptionExampleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return iterable
136
+     * @return \Generator
137 137
      */
138 138
     private function getLocales(): iterable
139 139
     {
Please login to merge, or discard this patch.
Sylius/Bundle/CoreBundle/Fixture/Factory/ShippingMethodExampleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return iterable
136
+     * @return \Generator
137 137
      */
138 138
     private function getLocales(): iterable
139 139
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/Factory/TaxonExampleFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return iterable
136
+     * @return \Generator
137 137
      */
138 138
     private function getLocales(): iterable
139 139
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/AddressPageInterface.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@  discard block
 block discarded – undo
23 23
 {
24 24
     /**
25 25
      * @throws \RuntimeException
26
+     * @return void
26 27
      */
27 28
     public function chooseDifferentBillingAddress();
28 29
 
@@ -41,21 +42,25 @@  discard block
 block discarded – undo
41 42
 
42 43
     /**
43 44
      * @param AddressInterface $billingAddress
45
+     * @return void
44 46
      */
45 47
     public function specifyBillingAddress(AddressInterface $billingAddress);
46 48
 
47 49
     /**
48 50
      * @param string $province
51
+     * @return void
49 52
      */
50 53
     public function selectBillingAddressProvince($province);
51 54
 
52 55
     /**
53 56
      * @param AddressInterface $shippingAddress
57
+     * @return void
54 58
      */
55 59
     public function specifyShippingAddress(AddressInterface $shippingAddress);
56 60
 
57 61
     /**
58 62
      * @param string $province
63
+     * @return void
59 64
      */
60 65
     public function selectShippingAddressProvince($province);
61 66
 
@@ -64,20 +69,26 @@  discard block
 block discarded – undo
64 69
      */
65 70
     public function canSignIn();
66 71
 
72
+    /**
73
+     * @return void
74
+     */
67 75
     public function signIn();
68 76
 
69 77
     /**
70 78
      * @param string $email
79
+     * @return void
71 80
      */
72 81
     public function specifyEmail($email);
73 82
 
74 83
     /**
75 84
      * @param string $fullName
85
+     * @return void
76 86
      */
77 87
     public function specifyShippingAddressFullName(string $fullName);
78 88
 
79 89
     /**
80 90
      * @param string $password
91
+     * @return void
81 92
      */
82 93
     public function specifyPassword($password);
83 94
 
@@ -93,17 +104,25 @@  discard block
 block discarded – undo
93 104
      */
94 105
     public function getShippingAddressCountry();
95 106
 
107
+    /**
108
+     * @return void
109
+     */
96 110
     public function nextStep();
97 111
 
112
+    /**
113
+     * @return void
114
+     */
98 115
     public function backToStore();
99 116
 
100 117
     /**
101 118
      * @param string $provinceName
119
+     * @return void
102 120
      */
103 121
     public function specifyBillingAddressProvince($provinceName);
104 122
 
105 123
     /**
106 124
      * @param string $provinceName
125
+     * @return void
107 126
      */
108 127
     public function specifyShippingAddressProvince($provinceName);
109 128
 
@@ -119,11 +138,13 @@  discard block
 block discarded – undo
119 138
 
120 139
     /**
121 140
      * @param AddressInterface $address
141
+     * @return void
122 142
      */
123 143
     public function selectShippingAddressFromAddressBook(AddressInterface $address);
124 144
 
125 145
     /**
126 146
      * @param AddressInterface $address
147
+     * @return void
127 148
      */
128 149
     public function selectBillingAddressFromAddressBook(AddressInterface $address);
129 150
 
Please login to merge, or discard this patch.