Completed
Push — checkout-optimisation ( 40d0de )
by Kamil
21:30
created
src/Sylius/Bundle/CoreBundle/Doctrine/ORM/AssociationHydrator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-     * @param mixed $subjects
44
-     * @param array|string[] $associationsPaths
43
+     * @param \Sylius\Component\Core\Model\OrderInterface $subjects
44
+     * @param string[] $associationsPaths
45 45
      */
46 46
     public function hydrateAssociations($subjects, array $associationsPaths)
47 47
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ChannelInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param CurrencyInterface $currency
36
+     * @return void
36 37
      */
37 38
     public function setBaseCurrency(CurrencyInterface $currency);
38 39
 
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * @param LocaleInterface $locale
47
+     * @return void
46 48
      */
47 49
     public function setDefaultLocale(LocaleInterface $locale);
48 50
 
@@ -53,6 +55,7 @@  discard block
 block discarded – undo
53 55
 
54 56
     /**
55 57
      * @param ZoneInterface $defaultTaxZone
58
+     * @return void
56 59
      */
57 60
     public function setDefaultTaxZone(ZoneInterface $defaultTaxZone);
58 61
 
@@ -63,6 +66,7 @@  discard block
 block discarded – undo
63 66
 
64 67
     /**
65 68
      * @param string $taxCalculationStrategy
69
+     * @return void
66 70
      */
67 71
     public function setTaxCalculationStrategy($taxCalculationStrategy);
68 72
 
@@ -73,6 +77,7 @@  discard block
 block discarded – undo
73 77
 
74 78
     /**
75 79
      * @param string $themeName
80
+     * @return void
76 81
      */
77 82
     public function setThemeName($themeName);
78 83
 
@@ -83,6 +88,7 @@  discard block
 block discarded – undo
83 88
 
84 89
     /**
85 90
      * @param string $contactEmail
91
+     * @return void
86 92
      */
87 93
     public function setContactEmail($contactEmail);
88 94
 
@@ -93,6 +99,7 @@  discard block
 block discarded – undo
93 99
 
94 100
     /**
95 101
      * @param bool $skippingShippingStepAllowed
102
+     * @return void
96 103
      */
97 104
     public function setSkippingShippingStepAllowed($skippingShippingStepAllowed);
98 105
 
@@ -103,6 +110,7 @@  discard block
 block discarded – undo
103 110
 
104 111
     /**
105 112
      * @param bool $accountVerificationRequired
113
+     * @return void
106 114
      */
107 115
     public function setAccountVerificationRequired($accountVerificationRequired);
108 116
 }
Please login to merge, or discard this patch.