예제 #1
0
 /**
  * visit a file and process it
  *
  * @param   vfsStreamFile  $file
  * @return  vfsStreamPrintVisitor
  */
 public function visitFile(vfsStreamFile $file)
 {
     $this->printContent($file->getName());
     return $this;
 }
 /**
  * visit a file and process it
  *
  * @param   vfsStreamFile  $file
  * @return  vfsStreamStructureVisitor
  */
 public function visitFile(vfsStreamFile $file)
 {
     $this->current[$file->getName()] = $file->getContent();
     return $this;
 }