Test and fixes every REST ressources already implemented.
[Project_proches_de_moi-server.git] / src / Entity / Localisation.php
index b85a705bca5acfb4d1a2a3c202df708ec2feca62..25ee27e7634e01b342df0d8319a73af27951995c 100644 (file)
@@ -19,7 +19,7 @@ class Localisation
     protected $id;
 
     /**
-     * @ORM\ManyToOne(targetEntity="App\Entity\Person", cascade={"all"})
+     * @ORM\ManyToOne(targetEntity="App\Entity\Person")
      */
     protected $person;
 
@@ -72,6 +72,12 @@ class Localisation
         return $this;
     }
 
+    public function setPerson($person)
+    {
+        $this->person = $person;
+        return $this;
+    }
+
     public function setTimestamp($timestamp)
     {
         $this->timestamp = $timestamp;