Пример #1
0
 /**
  * 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);
 }