Passed
Push — master ( cf7c7e...7addbd )
by Carl
02:05
created
Models/DTOs/User.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -182,8 +182,9 @@
 block discarded – undo
182 182
     public function setBirthdayUnixTimestamp($timestamp)
183 183
     {
184 184
         $dateTime = \DateTime::createFromFormat('U', $timestamp);
185
-        if ($dateTime instanceof \DateTime)
186
-            $this->setBirthday($dateTime);
185
+        if ($dateTime instanceof \DateTime) {
186
+                    $this->setBirthday($dateTime);
187
+        }
187 188
     }
188 189
 
189 190
     /**
Please login to merge, or discard this patch.