Completed
Push — 1.4-password-hashing-2 ( b79be0...722ba0 )
by Kamil
16:49
created
src/Sylius/Component/Grid/Data/ExpressionBuilderInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -33,10 +33,16 @@
 block discarded – undo
33 33
 
34 34
     public function lessThan(string $field, $value);
35 35
 
36
+    /**
37
+     * @param string $value
38
+     */
36 39
     public function lessThanOrEqual(string $field, $value);
37 40
 
38 41
     public function greaterThan(string $field, $value);
39 42
 
43
+    /**
44
+     * @param string $value
45
+     */
40 46
     public function greaterThanOrEqual(string $field, $value);
41 47
 
42 48
     public function in(string $field, array $values);
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
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * Configure options for this field type.
29
+     * @return void
29 30
      */
30 31
     public function configureOptions(OptionsResolver $resolver): void;
31 32
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filter/DateFilter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
         }
53 53
     }
54 54
 
55
+    /**
56
+     * @param string|boolean $default
57
+     */
55 58
     private function getOption(array $options, string $name, $default)
56 59
     {
57 60
         return $options[$name] ?? $default;
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filtering/FilterInterface.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 FilterInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function apply(DataSourceInterface $dataSource, string $name, $data, array $options): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filtering/FiltersApplicatorInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,5 +19,8 @@
 block discarded – undo
19 19
 
20 20
 interface FiltersApplicatorInterface
21 21
 {
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function apply(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters): void;
23 26
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Sorting/SorterInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,5 +19,8 @@
 block discarded – undo
19 19
 
20 20
 interface SorterInterface
21 21
 {
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function sort(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters): void;
23 26
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Inventory/Model/StockableInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -19,15 +19,30 @@
 block discarded – undo
19 19
 
20 20
     public function isInStock(): bool;
21 21
 
22
+    /**
23
+     * @return integer
24
+     */
22 25
     public function getOnHold(): ?int;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function setOnHold(?int $onHold): void;
25 31
 
32
+    /**
33
+     * @return integer
34
+     */
26 35
     public function getOnHand(): ?int;
27 36
 
37
+    /**
38
+     * @return void
39
+     */
28 40
     public function setOnHand(?int $onHand): void;
29 41
 
30 42
     public function isTracked(): bool;
31 43
 
44
+    /**
45
+     * @return void
46
+     */
32 47
     public function setTracked(bool $tracked): void;
33 48
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/Model/LocalesAwareInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -24,7 +24,13 @@
 block discarded – undo
24 24
 
25 25
     public function hasLocale(LocaleInterface $locale): bool;
26 26
 
27
+    /**
28
+     * @return void
29
+     */
27 30
     public function addLocale(LocaleInterface $locale): void;
28 31
 
32
+    /**
33
+     * @return void
34
+     */
29 35
     public function removeLocale(LocaleInterface $locale): void;
30 36
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Mailer/Model/EmailInterface.php 1 patch
Doc Comments   +39 added lines patch added patch discarded remove patch
@@ -15,16 +15,31 @@  discard block
 block discarded – undo
15 15
 
16 16
 interface EmailInterface
17 17
 {
18
+    /**
19
+     * @return string
20
+     */
18 21
     public function getCode(): ?string;
19 22
 
23
+    /**
24
+     * @return void
25
+     */
20 26
     public function setCode(string $code): void;
21 27
 
22 28
     public function isEnabled(): bool;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function setEnabled(bool $enabled): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function enable(): void;
27 39
 
40
+    /**
41
+     * @return void
42
+     */
28 43
     public function disable(): void;
29 44
 
30 45
     /**
@@ -32,6 +47,9 @@  discard block
 block discarded – undo
32 47
      */
33 48
     public function getSubject(): ?string;
34 49
 
50
+    /**
51
+     * @return void
52
+     */
35 53
     public function setSubject(string $subject): void;
36 54
 
37 55
     /**
@@ -39,17 +57,38 @@  discard block
 block discarded – undo
39 57
      */
40 58
     public function getContent(): ?string;
41 59
 
60
+    /**
61
+     * @return void
62
+     */
42 63
     public function setContent(string $content);
43 64
 
65
+    /**
66
+     * @return string
67
+     */
44 68
     public function getTemplate(): ?string;
45 69
 
70
+    /**
71
+     * @return void
72
+     */
46 73
     public function setTemplate(string $template): void;
47 74
 
75
+    /**
76
+     * @return string
77
+     */
48 78
     public function getSenderName(): ?string;
49 79
 
80
+    /**
81
+     * @return void
82
+     */
50 83
     public function setSenderName(string $senderName): void;
51 84
 
85
+    /**
86
+     * @return string
87
+     */
52 88
     public function getSenderAddress(): ?string;
53 89
 
90
+    /**
91
+     * @return void
92
+     */
54 93
     public function setSenderAddress(string $senderAddress): void;
55 94
 }
Please login to merge, or discard this patch.