setName($name); $this->setController($controller); $this->setArguments($arguments); } public function getName() { return $this->name; } public function setName($name) { $this->name = $name; } public function getController() { return $this->controller; } public function setController($controller) { $this->controller = $controller; } public function getArguments() { return $this->arguments; } public function setArguments($arguments) { $this->arguments = new Collection('getName'); $this->arguments->addAll($arguments); } }