id; } public function setTitle($title) { $this->title = $title; } public function getTitle() { return $this->title; } public function setParent(Category $parent = null) { $this->parent = $parent; } public function getParent() { return $this->parent; } public function addClosure(CategoryClosure $closure) { $this->closures[] = $closure; } public function setLevel($level) { $this->level = $level; } public function getLevel() { return $this->level; } }