value = $this->uri; } public function getContent() { if (!$this->content) { $this->content = file_get_contents($this->getPath()); } return $this->content; } public function setContent($content) { $this->content = $content; } protected function getFilename($file) { return DauxHelper::pathinfo($file)['filename']; } }