Exemplo n.º 1
0
 /**
  * Create a new local file system
  * 
  * @param string $id
  * @return FileSystem
  */
 public function createLocalFileSystem($id)
 {
     $path = $this->getOption(self::OPTION_FILE_PATH) . \helpers_File::sanitizeInjectively($id);
     $this->registerLocalFileSystem($id, $path);
     return $this->getFileSystem($id);
 }