Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Component/Taxation/Model/TaxRateInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param TaxCategoryInterface|null $category
32
+     * @return void
32 33
      */
33 34
     public function setCategory(?TaxCategoryInterface $category): void;
34 35
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param string|null $name
43
+     * @return void
42 44
      */
43 45
     public function setName(?string $name): void;
44 46
 
@@ -54,6 +56,7 @@  discard block
 block discarded – undo
54 56
 
55 57
     /**
56 58
      * @param float|null $amount
59
+     * @return void
57 60
      */
58 61
     public function setAmount(?float $amount): void;
59 62
 
@@ -64,6 +67,7 @@  discard block
 block discarded – undo
64 67
 
65 68
     /**
66 69
      * @param bool|null $includedInPrice
70
+     * @return void
67 71
      */
68 72
     public function setIncludedInPrice(?bool $includedInPrice): void;
69 73
 
@@ -74,6 +78,7 @@  discard block
 block discarded – undo
74 78
 
75 79
     /**
76 80
      * @param string|null $calculator
81
+     * @return void
77 82
      */
78 83
     public function setCalculator(?string $calculator): void;
79 84
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/GridBundle/Form/Registry/FormTypeRegistryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
      * @param string $identifier
23 23
      * @param string $typeIdentifier
24 24
      * @param string $formType
25
+     * @return void
25 26
      */
26 27
     public function add(string $identifier, string $typeIdentifier, string $formType): void;
27 28
 
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Data/ExpressionBuilderInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     /**
69 69
      * @param string $field
70
-     * @param mixed $value
70
+     * @param string $value
71 71
      *
72 72
      * @return mixed
73 73
      */
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 
84 84
     /**
85 85
      * @param string $field
86
-     * @param mixed $value
86
+     * @param string $value
87 87
      *
88 88
      * @return mixed
89 89
      */
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Definition/Filter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     }
107 107
 
108 108
     /**
109
-     * @return mixed
109
+     * @return string
110 110
      */
111 111
     public function getLabel()
112 112
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Definition/Grid.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-     * @return array
135
+     * @return integer[]
136 136
      */
137 137
     public function getLimits(): array
138 138
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/FieldTypes/FieldTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@
 block discarded – undo
37 37
      * Configure options for this field type.
38 38
      *
39 39
      * @param OptionsResolver $resolver
40
+     * @return void
40 41
      */
41 42
     public function configureOptions(OptionsResolver $resolver): void;
42 43
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filtering/FilterInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
      * @param string $name
26 26
      * @param mixed $data
27 27
      * @param array $options
28
+     * @return void
28 29
      */
29 30
     public function apply(DataSourceInterface $dataSource, string $name, $data, array $options): void;
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filtering/FiltersApplicatorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
      * @param DataSourceInterface $dataSource
27 27
      * @param Grid $grid
28 28
      * @param Parameters $parameters
29
+     * @return void
29 30
      */
30 31
     public function apply(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters): void;
31 32
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Sorting/SorterInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
      * @param DataSourceInterface $dataSource
27 27
      * @param Grid $grid
28 28
      * @param Parameters $parameters
29
+     * @return void
29 30
      */
30 31
     public function sort(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters): void;
31 32
 }
Please login to merge, or discard this patch.