Completed
Push — master ( 1d1dd7...28dad9 )
by Joachim
32:56 queued 17:55
created
src/Entity/AbstractEntity.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,13 +20,13 @@
 block discarded – undo
20 20
         return $hydrator->extract($this);
21 21
     }
22 22
 
23
-    protected function getDateTimeFromJson(?$val) : ?DateTimeImmutable
23
+    protected function getDateTimeFromJson(? $val) : ?DateTimeImmutable
24 24
     {
25
-        if(!$val) {
25
+        if (!$val) {
26 26
             return null;
27 27
         }
28 28
 
29
-        if($val instanceof DateTimeImmutable) {
29
+        if ($val instanceof DateTimeImmutable) {
30 30
             return $val;
31 31
         }
32 32
 
Please login to merge, or discard this patch.