initializePage($title, $content); } public function getContent() { if (is_null($this->generated)) { $this->generated = $this->generatePage(); } return $this->generated; } protected function initializePage($title, $content) { $this->title = $title; $this->content = $content; } protected function generatePage() { return $this->content; } }