コード例 #1
0
 /** @test */
 function it_deletes_a_file()
 {
     $path = vfsStream::url('gen/text.txt');
     FileKeeper::write($path, 'foo');
     $this->assertFileExists($path);
     FileKeeper::delete($path);
     $this->assertFileNotExists($path);
 }
コード例 #2
0
ファイル: Writer.php プロジェクト: NuclearCMS/Hierarchy
 /**
  * Deletes a field
  *
  * @param string $path
  */
 public function delete($path)
 {
     FileKeeper::delete($path);
 }