Completed
Push — locale-in-url ( 6d9eda )
by Kamil
23:08
created
src/Sylius/Component/Currency/Model/ExchangeRateInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param float $ratio
28
+     * @return void
28 29
      */
29 30
     public function setRatio($ratio);
30 31
 
@@ -35,6 +36,7 @@  discard block
 block discarded – undo
35 36
 
36 37
     /**
37 38
      * @param CurrencyInterface $currency
39
+     * @return void
38 40
      */
39 41
     public function setSourceCurrency(CurrencyInterface $currency);
40 42
 
@@ -45,6 +47,7 @@  discard block
 block discarded – undo
45 47
 
46 48
     /**
47 49
      * @param CurrencyInterface $currency
50
+     * @return void
48 51
      */
49 52
     public function setTargetCurrency(CurrencyInterface $currency);
50 53
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Customer/Model/CustomerAwareInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param CustomerInterface $customer
26
+     * @return void
26 27
      */
27 28
     public function setCustomer(CustomerInterface $customer = null);
28 29
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Customer/Model/CustomerGroupInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Customer/Model/CustomerInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param  string $email
33
+     * @return void
33 34
      */
34 35
     public function setEmail($email);
35 36
 
@@ -42,6 +43,7 @@  discard block
 block discarded – undo
42 43
 
43 44
     /**
44 45
      * @param  string $emailCanonical
46
+     * @return void
45 47
      */
46 48
     public function setEmailCanonical($emailCanonical);
47 49
 
@@ -57,6 +59,7 @@  discard block
 block discarded – undo
57 59
 
58 60
     /**
59 61
      * @param  string $firstName
62
+     * @return void
60 63
      */
61 64
     public function setFirstName($firstName);
62 65
 
@@ -67,6 +70,7 @@  discard block
 block discarded – undo
67 70
 
68 71
     /**
69 72
      * @param  string $lastName
73
+     * @return void
70 74
      */
71 75
     public function setLastName($lastName);
72 76
 
@@ -77,6 +81,7 @@  discard block
 block discarded – undo
77 81
 
78 82
     /**
79 83
      * @param  \DateTime $birthday
84
+     * @return void
80 85
      */
81 86
     public function setBirthday(\DateTime $birthday = null);
82 87
 
@@ -89,6 +94,7 @@  discard block
 block discarded – undo
89 94
      * You should use interface constants for that.
90 95
      *
91 96
      * @param  string $gender
97
+     * @return void
92 98
      */
93 99
     public function setGender($gender);
94 100
 
@@ -109,6 +115,7 @@  discard block
 block discarded – undo
109 115
 
110 116
     /**
111 117
      * @param CustomerGroupInterface $group
118
+     * @return void
112 119
      */
113 120
     public function setGroup(CustomerGroupInterface $group = null);
114 121
 
@@ -119,6 +126,7 @@  discard block
 block discarded – undo
119 126
 
120 127
     /**
121 128
      * @param string $phoneNumber
129
+     * @return void
122 130
      */
123 131
     public function setPhoneNumber($phoneNumber);
124 132
 
@@ -129,6 +137,7 @@  discard block
 block discarded – undo
129 137
 
130 138
     /**
131 139
      * @param bool $subscribedToNewsletter
140
+     * @return void
132 141
      */
133 142
     public function setSubscribedToNewsletter($subscribedToNewsletter);
134 143
 }
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
@@ -35,6 +35,7 @@
 block discarded – undo
35 35
      * Configure options for this field type.
36 36
      *
37 37
      * @param OptionsResolver $resolver
38
+     * @return void
38 39
      */
39 40
     public function configureOptions(OptionsResolver $resolver);
40 41
 }
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
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * @param string $name
24 24
      * @param mixed $data
25 25
      * @param array $options
26
+     * @return void
26 27
      */
27 28
     public function apply(DataSourceInterface $dataSource, $name, $data, array $options);
28 29
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Inventory/Model/StockableInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param int $onHold
36
+     * @return void
36 37
      */
37 38
     public function setOnHold($onHold);
38 39
 
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * @param int $onHand
47
+     * @return void
46 48
      */
47 49
     public function setOnHand($onHand);
48 50
 
@@ -53,6 +55,7 @@  discard block
 block discarded – undo
53 55
 
54 56
     /**
55 57
      * @param bool $tracked
58
+     * @return void
56 59
      */
57 60
     public function setTracked($tracked);
58 61
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/Model/LocalesAwareInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -32,11 +32,13 @@
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @param LocaleInterface $locale
35
+     * @return void
35 36
      */
36 37
     public function addLocale(LocaleInterface $locale);
37 38
 
38 39
     /**
39 40
      * @param LocaleInterface $locale
41
+     * @return void
40 42
      */
41 43
     public function removeLocale(LocaleInterface $locale);
42 44
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Mailer/Sender/SenderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
      * @param string $code
21 21
      * @param array $recipients
22 22
      * @param array $data
23
+     * @return void
23 24
      */
24 25
     public function send($code, array $recipients, array $data = []);
25 26
 }
Please login to merge, or discard this patch.