|
11 | 11 |
|
12 | 12 | namespace BlitzPHP\Facades; |
13 | 13 |
|
| 14 | +use BlitzPHP\Contracts\Filesystem\FilesystemInterface; |
14 | 15 | use BlitzPHP\Filesystem\FilesystemManager; |
15 | 16 | use Closure; |
16 | 17 | use DateTimeInterface; |
|
22 | 23 | * @method static array allDirectories(string|null $directory = null) |
23 | 24 | * @method static array allFiles(string|null $directory = null) |
24 | 25 | * @method static bool append(string $path, string $data) |
25 | | - * @method static \BlitzPHP\Filesystem\FilesystemInterface build(array|string $config) |
| 26 | + * @method static FilesystemInterface build(array|string $config) |
26 | 27 | * @method static void buildTemporaryUrlsUsing(Closure $callback) |
27 | 28 | * @method static string|false checksum(string $path, array $options = []) |
28 | | - * @method static \BlitzPHP\Filesystem\FilesystemInterface cloud() |
| 29 | + * @method static FilesystemInterface cloud() |
29 | 30 | * @method static bool copy(string $from, string $to) |
30 | 31 | * @method static void createDirectory(string $location, array $config = []) |
31 | | - * @method static \BlitzPHP\Filesystem\FilesystemInterface createFtpDriver(array $config) |
32 | | - * @method static \BlitzPHP\Filesystem\FilesystemInterface createLocalDriver(array $config) |
33 | | - * @method static \BlitzPHP\Filesystem\FilesystemInterface createS3Driver(array $config) |
34 | | - * @method static \BlitzPHP\Filesystem\FilesystemInterface createScopedDriver(array $config) |
35 | | - * @method static \BlitzPHP\Filesystem\FilesystemInterface createSftpDriver(array $config) |
| 32 | + * @method static FilesystemInterface createFtpDriver(array $config) |
| 33 | + * @method static FilesystemInterface createLocalDriver(array $config) |
| 34 | + * @method static FilesystemInterface createS3Driver(array $config) |
| 35 | + * @method static FilesystemInterface createScopedDriver(array $config) |
| 36 | + * @method static FilesystemInterface createSftpDriver(array $config) |
36 | 37 | * @method static bool delete(array|string $paths) |
37 | 38 | * @method static bool deleteDirectory(string $directory) |
38 | 39 | * @method static array directories(string|null $directory = null, bool $recursive = false) |
39 | 40 | * @method static bool directoryExists(string $path) |
40 | 41 | * @method static bool directoryMissing(string $path) |
41 | | - * @method static \BlitzPHP\Filesystem\FilesystemInterface disk(string|null $name = null) |
| 42 | + * @method static FilesystemInterface disk(string|null $name = null) |
42 | 43 | * @method static \Symfony\Component\HttpFoundation\StreamedResponse download(string $path, string|null $name = null, array $headers = []) |
43 | | - * @method static \BlitzPHP\Filesystem\FilesystemInterface drive(string|null $name = null) |
| 44 | + * @method static FilesystemInterface drive(string|null $name = null) |
44 | 45 | * @method static bool exists(string $path) |
45 | 46 | * @method static FilesystemManager extend(string $driver, Closure $callback) |
46 | 47 | * @method static bool fileExists(string $path) |
|
67 | 68 | * @method static bool missing(string $path) |
68 | 69 | * @method static void mixin(object $mixin, bool $replace = true) |
69 | 70 | * @method static bool move(string $from, string $to) |
70 | | - * @method static \BlitzPHP\Filesystem\FilesystemAdapter|mixed when((Closure | mixed | null) $value = null, (callable | null) $callback = null, (callable | null) $default = null) |
| 71 | + * @method static FilesystemAdapter|mixed when((Closure | mixed | null) $value = null, (callable | null) $callback = null, (callable | null) $default = null) |
71 | 72 | * @method static string path(string $path) |
72 | 73 | * @method static bool prepend(string $path, string $data) |
73 | 74 | * @method static bool providesTemporaryUrls() |
|
88 | 89 | * @method static void write(string $location, string $contents, array $config = []) |
89 | 90 | * @method static bool writeStream(string $path, resource $resource, array $options = []) |
90 | 91 | * |
91 | | - * @see FilesystemManager |
| 92 | + * @see \BlitzPHP\Filesystem\FilesystemManager |
92 | 93 | */ |
93 | 94 | final class Storage extends Facade |
94 | 95 | { |
|
0 commit comments