id; } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } public function setParent(Category $parent = null) { $this->parent = $parent; } public function getParent() { return $this->parent; } public function addClosure(CategoryClosure $closure) { $this->closures[] = $closure; } }