コード例 #1
0
ファイル: FilesystemWrapper.php プロジェクト: graze/data-file
 /**
  * Read and delete a file.
  *
  * @param string $path The path to the file.
  *
  * @throws FileNotFoundException
  *
  * @return string|false The file contents, or false on failure.
  */
 public function readAndDelete($path)
 {
     return $this->fileSystem->readAndDelete($path);
 }