Пример #1
0
 /**
  * Creates a new absolute file.
  *
  * @param MOXMAN_Vfs_FileSystem $fileSystem MCManager reference.
  * @param string $path Absolute path to local file.
  */
 public function __construct($fileSystem, $path)
 {
     parent::__construct($fileSystem, $path);
     $this->internalPath = $this->fromUtf($path);
     MOXMAN_Util_PathUtils::verifyPath($path, true);
 }
Пример #2
0
 public function __construct($fileSystem, $path, $entry = null)
 {
     parent::__construct($fileSystem, $path);
     $this->entry = $entry;
 }
Пример #3
0
 /**
  * Creates a new absolute file.
  *
  * @param MOXMAN_Vfs_FileSystem $fileSystem MCManager reference.
  * @param string $path Absolute path to local file.
  */
 public function __construct($fileSystem, $path)
 {
     parent::__construct($fileSystem, $path);
     $this->internalPath = $this->fromUtf($path);
 }