상속: implements org\bovigo\vfs\vfsStreamContent
예제 #1
0
 /**
  * constructor
  *
  * @param  string  $name
  * @param  int     $permissions  optional
  */
 public function __construct($name, $permissions = null)
 {
     $this->content = new StringBasedFileContent(null);
     $this->type = vfsStreamContent::TYPE_FILE;
     parent::__construct($name, $permissions);
 }