public function recoverEntry($name, $namespace) { $file = $this->getFile($name, $namespace); if (!$this->fileSystem->exists($file)) { return null; } return file_get_contents($file); }
public function exists($path) { return $this->fileSystem->exists($this->rootDirectory . $path); }