Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Component/Order/Remover/ExpiredCartsRemoverInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface ExpiredCartsRemoverInterface
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function remove(): void;
19 22
 }
Please login to merge, or discard this patch.
src/Sylius/Component/User/Security/PasswordUpdaterInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface PasswordUpdaterInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function updatePassword(CredentialsHolderInterface $user): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/ShippingContext.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -146,6 +146,7 @@
 block discarded – undo
146 146
 
147 147
     /**
148 148
      * @Given the store (also )allows shipping with :name
149
+     * @param string $name
149 150
      */
150 151
     public function theStoreAllowsShippingMethodWithName($name)
151 152
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/TaxationContext.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,6 +127,7 @@  discard block
 block discarded – undo
127 127
      * @Given the store has a tax category :name with a code :code
128 128
      * @Given the store has a tax category :name
129 129
      * @Given the store has a tax category :name also
130
+     * @param string $name
130 131
      */
131 132
     public function theStoreHasTaxCategoryWithCode($name, $code = null)
132 133
     {
@@ -213,7 +214,7 @@  discard block
 block discarded – undo
213 214
     /**
214 215
      * @param string $taxRateAmount
215 216
      *
216
-     * @return string
217
+     * @return integer
217 218
      */
218 219
     private function getAmountFromString($taxRateAmount)
219 220
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Crud/IndexPageInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -42,6 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param string $fieldName
45
+     * @return void
45 46
      */
46 47
     public function sortBy($fieldName);
47 48
 
@@ -61,6 +62,7 @@  discard block
 block discarded – undo
61 62
 
62 63
     /**
63 64
      * @param array $parameters
65
+     * @return void
64 66
      */
65 67
     public function checkResourceOnPage(array $parameters): void;
66 68
 
@@ -69,7 +71,13 @@  discard block
 block discarded – undo
69 71
      */
70 72
     public function countItems();
71 73
 
74
+    /**
75
+     * @return void
76
+     */
72 77
     public function filter();
73 78
 
79
+    /**
80
+     * @return void
81
+     */
74 82
     public function bulkDelete(): void;
75 83
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/OrderItem.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-     * @return ProductInterface|null
53
+     * @return \Sylius\Component\Product\Model\ProductInterface|null
54 54
      */
55 55
     public function getProduct(): ?ProductInterface
56 56
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/OrderItemInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param ProductVariantInterface|null $variant
32
+     * @return void
32 33
      */
33 34
     public function setVariant(?ProductVariantInterface $variant): void;
34 35
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param string|null $productName
43
+     * @return void
42 44
      */
43 45
     public function setProductName(?string $productName): void;
44 46
 
@@ -49,6 +51,7 @@  discard block
 block discarded – undo
49 51
 
50 52
     /**
51 53
      * @param string|null $variantName
54
+     * @return void
52 55
      */
53 56
     public function setVariantName(?string $variantName): void;
54 57
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Order/OrderItemNamesSetterInterface.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 OrderInterface $order
22
+     * @return void
22 23
      */
23 24
     public function __invoke(OrderInterface $order): void;
24 25
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTaxonInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
     /**
26 26
      * @param ProductInterface|null $product
27
+     * @return void
27 28
      */
28 29
     public function setProduct(?ProductInterface $product): void;
29 30
 
@@ -34,6 +35,7 @@  discard block
 block discarded – undo
34 35
 
35 36
     /**
36 37
      * @param TaxonInterface|null $taxon
38
+     * @return void
37 39
      */
38 40
     public function setTaxon(?TaxonInterface $taxon): void;
39 41
 
@@ -44,6 +46,7 @@  discard block
 block discarded – undo
44 46
 
45 47
     /**
46 48
      * @param int|null $position
49
+     * @return void
47 50
      */
48 51
     public function setPosition(?int $position): void;
49 52
 }
Please login to merge, or discard this patch.