allowMethod('getName', 'getContent'); } function setName($name) { $this->name = $name; } function getName() { return $this->name; } function setContent($content) { $this->content = $content; } function getContent() { return $this->content; } }