PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Support
/
Facades
<?php namespace Illuminate\Support\Facades; use Illuminate\Filesystem\Filesystem; /** * @method static \Illuminate\Contracts\Filesystem\Filesystem assertExists(string|array $path) * @method static \Illuminate\Contracts\Filesystem\Filesystem assertMissing(string|array $path) * @method static \Illuminate\Contracts\Filesystem\Filesystem cloud() * @method static \Illuminate\Contracts\Filesystem\Filesystem build(string|array $root) * @method static \Illuminate\Contracts\Filesystem\Filesystem disk(string|null $name = null) * @method static \Illuminate\Filesystem\FilesystemManager extend(string $driver, \Closure $callback) * @method static \Symfony\Component\HttpFoundation\StreamedResponse download(string $path, string|null $name = null, array|null $headers = []) * @method static \Symfony\Component\HttpFoundation\StreamedResponse response(string $path, string|null $name = null, array|null $headers = [], string|null $disposition = 'inline') * @method static array allDirectories(string|null $directory = null) * @method static array allFiles(string|null $directory = null) * @method static array directories(string|null $directory = null, bool $recursive = false) * @method static array files(string|null $directory = null, bool $recursive = false) * @method static bool append(string $path, string $data) * @method static bool copy(string $from, string $to) * @method static bool delete(string|array $paths) * @method static bool deleteDirectory(string $directory) * @method static bool exists(string $path) * @method static bool makeDirectory(string $path) * @method static bool missing(string $path) * @method static bool move(string $from, string $to) * @method static bool prepend(string $path, string $data) * @method static bool put(string $path, string|resource $contents, mixed $options = []) * @method static bool setVisibility(string $path, string $visibility) * @method static bool writeStream(string $path, resource $resource, array $options = []) * @method static int lastModified(string $path) * @method static int size(string $path) * @method static resource|null readStream(string $path) * @method static string get(string $path) * @method static string getVisibility(string $path) * @method static string path(string $path) * @method static string temporaryUrl(string $path, \DateTimeInterface $expiration, array $options = []) * @method static string url(string $path) * @method static string|false mimeType(string $path) * @method static string|false putFile(string $path, \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string $file, mixed $options = []) * @method static string|false putFileAs(string $path, \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string $file, string $name, mixed $options = []) * * @see \Illuminate\Filesystem\FilesystemManager */ class Storage extends Facade { /** * Replace the given disk with a local testing disk. * * @param string|null $disk * @param array $config * @return \Illuminate\Contracts\Filesystem\Filesystem */ public static function fake($disk = null, array $config = []) { $disk = $disk ?: static::$app['config']->get('filesystems.default'); $root = storage_path('framework/testing/disks/'.$disk); if ($token = ParallelTesting::token()) { $root = "{$root}_test_{$token}"; } (new Filesystem)->cleanDirectory($root); static::set($disk, $fake = static::createLocalDriver(array_merge($config, [ 'root' => $root, ]))); return $fake; } /** * Replace the given disk with a persistent local testing disk. * * @param string|null $disk * @param array $config * @return \Illuminate\Contracts\Filesystem\Filesystem */ public static function persistentFake($disk = null, array $config = []) { $disk = $disk ?: static::$app['config']->get('filesystems.default'); static::set($disk, $fake = static::createLocalDriver(array_merge($config, [ 'root' => storage_path('framework/testing/disks/'.$disk), ]))); return $fake; } /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'filesystem'; } }
[-] DB.php
[edit]
[-] Mail.php
[edit]
[-] RateLimiter.php
[edit]
[-] Artisan.php
[edit]
[-] Lang.php
[edit]
[-] Auth.php
[edit]
[-] Facade.php
[edit]
[-] Blade.php
[edit]
[-] Session.php
[edit]
[-] File.php
[edit]
[-] Schema.php
[edit]
[-] Cookie.php
[edit]
[+]
..
[-] Date.php
[edit]
[-] View.php
[edit]
[-] Config.php
[edit]
[-] Route.php
[edit]
[-] Http.php
[edit]
[-] Request.php
[edit]
[-] Redirect.php
[edit]
[-] Crypt.php
[edit]
[-] Log.php
[edit]
[-] Validator.php
[edit]
[-] Gate.php
[edit]
[-] Event.php
[edit]
[-] Queue.php
[edit]
[-] Storage.php
[edit]
[-] App.php
[edit]
[-] Bus.php
[edit]
[-] Notification.php
[edit]
[-] Broadcast.php
[edit]
[-] ParallelTesting.php
[edit]
[-] URL.php
[edit]
[-] Password.php
[edit]
[-] Hash.php
[edit]
[-] Redis.php
[edit]
[-] Cache.php
[edit]
[-] Response.php
[edit]