Эх сурвалжийг харах

Correction getId doit pouvoir retourner null

François Drouhard 2 жил өмнө
parent
commit
038ddeffb5

+ 1 - 1
src/Entity/Commentaire.php

@@ -40,7 +40,7 @@ class Commentaire
         $this->dateSubmitted = new \DateTime('now');
     }
 
-    public function getId(): int
+    public function getId(): ?int
     {
         return $this->id;
     }

+ 1 - 1
src/Entity/Film.php

@@ -90,7 +90,7 @@ class Film
         return $this;
     }
 
-    public function getId(): int
+    public function getId(): ?int
     {
         return $this->id;
     }