Internal: Implement getter for CQuiz::$attempts

pull/5456/head
Angel Fernando Quiroz Campos 7 months ago
parent dbf2adf529
commit 48fce8bf1c
  1. 8
      src/CourseBundle/Entity/CQuiz.php

@ -670,4 +670,12 @@ class CQuiz extends AbstractResource implements ResourceInterface, ResourceShowC
{
return $this->setTitle($name);
}
/**
* @return Collection<int, TrackEExercise>
*/
public function getAttempts(): Collection
{
return $this->attempts;
}
}

Loading…
Cancel
Save