ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
UnreadableFileException.php
Go to the documentation of this file.
1 <?php
2 
3 namespace League\Flysystem;
4 
5 use SplFileInfo;
6 
8 {
9  public static function forFileInfo(SplFileInfo $fileInfo)
10  {
11  return new static(
12  sprintf(
13  'Unreadable file encountered: %s',
14  $fileInfo->getRealPath()
15  )
16  );
17  }
18 }