|
@@ -216,14 +216,19 @@ class Course
|
|
{
|
|
{
|
|
$this->users = new ArrayCollection();
|
|
$this->users = new ArrayCollection();
|
|
$this->items = new ArrayCollection();
|
|
$this->items = new ArrayCollection();
|
|
- //$this->curriculumCategories = new ArrayCollection();
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @return ArrayCollection
|
|
|
|
+ */
|
|
public function getItems()
|
|
public function getItems()
|
|
{
|
|
{
|
|
return $this->items;
|
|
return $this->items;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @return ArrayCollection
|
|
|
|
+ */
|
|
public function getUsers()
|
|
public function getUsers()
|
|
{
|
|
{
|
|
return $this->users;
|
|
return $this->users;
|