Skip to content
Snippets Groups Projects
Commit 42ae8355 authored by Jonathan Foucher's avatar Jonathan Foucher
Browse files

Can add proofs to measurment ont measurment side. Fixes...

Can add proofs to measurment ont measurment side. Fixes #994
parent bcc4fc5b
No related branches found
No related tags found
No related merge requests found
Pipeline #90794 passed
......@@ -441,6 +441,20 @@ class Mesurement implements LoggableSubject, CollectivityRelated
$this->proofs = $proofs;
}
public function addProof(Proof $proof): void
{
$this->proofs->add($proof);
$proof->addMesurement($this);
}
public function removeProof(Proof $proof): void
{
if ($this->proofs->count() && $this->proofs->contains($proof)) {
$this->proofs->removeElement($proof);
}
$proof->removeMesurement($this);
}
public function getAnswerSurveys(): ?iterable
{
return $this->answerSurveys;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment