Пример #1
0
 /**
  * Get contents of a file object
  *
  * @param FileInterface $file
  *
  * @throws Exception\InsufficientFileReadPermissionsException
  * @return string
  */
 public function getFileContents($file)
 {
     $this->assureFileReadPermission($file);
     return $this->driver->getFileContents($file->getIdentifier());
 }