| 1 | <?php |
||
| 11 | class Disk |
||
| 12 | { |
||
| 13 | protected $disk; |
||
| 14 | |||
| 15 | protected static $filesystems; |
||
| 16 | |||
| 17 | public function __construct(Filesystem $disk) |
||
| 21 | |||
| 22 | public static function fromName(string $name): Disk |
||
| 28 | |||
| 29 | public function isLocal(): bool |
||
| 35 | |||
| 36 | public function newFile(string $path): File |
||
| 40 | |||
| 41 | public function getPath(): string |
||
| 45 | |||
| 46 | public function createDirectory(string $path) |
||
| 50 | |||
| 51 | public function __call($method, $parameters) |
||
| 55 | } |
||
| 56 |