Completed
Push — scalar-types/customer ( ef75d9...db66a3 )
by Kamil
87:45 queued 64:08
created
src/Sylius/Component/Customer/Model/Customer.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Customer\Model;
15 15
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * {@inheritdoc}
106 106
      */
107
-    public function setEmail(?string $email): void
107
+    public function setEmail(?string $email) : void
108 108
     {
109 109
         $this->email = $email;
110 110
     }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     /**
121 121
      * {@inheritdoc}
122 122
      */
123
-    public function setEmailCanonical(?string $emailCanonical): void
123
+    public function setEmailCanonical(?string $emailCanonical) : void
124 124
     {
125 125
         $this->emailCanonical = $emailCanonical;
126 126
     }
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     /**
145 145
      * {@inheritdoc}
146 146
      */
147
-    public function setFirstName(?string $firstName): void
147
+    public function setFirstName(?string $firstName) : void
148 148
     {
149 149
         $this->firstName = $firstName;
150 150
     }
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
     /**
161 161
      * {@inheritdoc}
162 162
      */
163
-    public function setLastName(?string $lastName): void
163
+    public function setLastName(?string $lastName) : void
164 164
     {
165 165
         $this->lastName = $lastName;
166 166
     }
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     /**
177 177
      * {@inheritdoc}
178 178
      */
179
-    public function setBirthday(?\DateTimeInterface $birthday): void
179
+    public function setBirthday(?\DateTimeInterface $birthday) : void
180 180
     {
181 181
         $this->birthday = $birthday;
182 182
     }
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
     /**
193 193
      * {@inheritdoc}
194 194
      */
195
-    public function setGender(?string $gender): void
195
+    public function setGender(?string $gender) : void
196 196
     {
197 197
         $this->gender = $gender;
198 198
     }
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     /**
225 225
      * {@inheritdoc}
226 226
      */
227
-    public function setGroup(?CustomerGroupInterface $group): void
227
+    public function setGroup(?CustomerGroupInterface $group) : void
228 228
     {
229 229
         $this->group = $group;
230 230
     }
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
     /**
241 241
      * {@inheritdoc}
242 242
      */
243
-    public function setPhoneNumber(?string $phoneNumber): void
243
+    public function setPhoneNumber(?string $phoneNumber) : void
244 244
     {
245 245
         $this->phoneNumber = $phoneNumber;
246 246
     }
Please login to merge, or discard this patch.