File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Support/Facades
Upload
[..]
App.php (9.59 KB)
Edit
Rename
Del
Artisan.php (1.91 KB)
Edit
Rename
Del
Auth.php (5.07 KB)
Edit
Rename
Del
Blade.php (3.06 KB)
Edit
Rename
Del
Broadcast.php (2.75 KB)
Edit
Rename
Del
Bus.php (5.26 KB)
Edit
Rename
Del
Cache.php (6.04 KB)
Edit
Rename
Del
Concurrency.php (1.44 KB)
Edit
Rename
Del
Config.php (1.37 KB)
Edit
Rename
Del
Context.php (3.39 KB)
Edit
Rename
Del
Cookie.php (2.39 KB)
Edit
Rename
Del
Crypt.php (928 B)
Edit
Rename
Del
DB.php (8.39 KB)
Edit
Rename
Del
Date.php (8.18 KB)
Edit
Rename
Del
Event.php (5.07 KB)
Edit
Rename
Del
Facade.php (9.11 KB)
Edit
Rename
Del
File.php (3.93 KB)
Edit
Rename
Del
Gate.php (2.77 KB)
Edit
Rename
Del
Hash.php (1.36 KB)
Edit
Rename
Del
Http.php (10.74 KB)
Edit
Rename
Del
Lang.php (2.35 KB)
Edit
Rename
Del
Log.php (2.84 KB)
Edit
Rename
Del
Mail.php (5.25 KB)
Edit
Rename
Del
MaintenanceMode.php (948 B)
Edit
Rename
Del
Notification.php (4.04 KB)
Edit
Rename
Del
Password.php (2.41 KB)
Edit
Rename
Del
Pipeline.php (1.62 KB)
Edit
Rename
Del
Queue.php (8.02 KB)
Edit
Rename
Del
RateLimiter.php (1.38 KB)
Edit
Rename
Del
Redirect.php (2.33 KB)
Edit
Rename
Del
Redis.php (23.75 KB)
Edit
Rename
Del
Request.php (11.82 KB)
Edit
Rename
Del
Response.php (2.94 KB)
Edit
Rename
Del
Route.php (8.39 KB)
Edit
Rename
Del
Schedule.php (8.14 KB)
Edit
Rename
Del
Schema.php (3.96 KB)
Edit
Rename
Del
Session.php (4.02 KB)
Edit
Rename
Del
Storage.php (9.1 KB)
Edit
Rename
Del
URL.php (3.89 KB)
Edit
Rename
Del
Validator.php (1.54 KB)
Edit
Rename
Del
View.php (5.5 KB)
Edit
Rename
Del
Vite.php (2.52 KB)
Edit
Rename
Del
Edit: File.php
<?php namespace Illuminate\Support\Facades; /** * @method static bool exists(string $path) * @method static bool missing(string $path) * @method static string get(string $path, bool $lock = false) * @method static array json(string $path, int $flags = 0, bool $lock = false) * @method static string sharedGet(string $path) * @method static mixed getRequire(string $path, array $data = []) * @method static mixed requireOnce(string $path, array $data = []) * @method static \Illuminate\Support\LazyCollection lines(string $path) * @method static string|false hash(string $path, string $algorithm = 'md5') * @method static int|bool put(string $path, string $contents, bool $lock = false) * @method static void replace(string $path, string $content, int|null $mode = null) * @method static void replaceInFile(array|string $search, array|string $replace, string $path) * @method static int prepend(string $path, string $data) * @method static int append(string $path, string $data, bool $lock = false) * @method static mixed chmod(string $path, int|null $mode = null) * @method static bool delete(string|array $paths) * @method static bool move(string $path, string $target) * @method static bool copy(string $path, string $target) * @method static bool|null link(string $target, string $link) * @method static void relativeLink(string $target, string $link) * @method static string name(string $path) * @method static string basename(string $path) * @method static string dirname(string $path) * @method static string extension(string $path) * @method static string|null guessExtension(string $path) * @method static string|false type(string $path) * @method static string|false mimeType(string $path) * @method static int size(string $path) * @method static int lastModified(string $path) * @method static bool isDirectory(string $directory) * @method static bool isEmptyDirectory(string $directory, bool $ignoreDotFiles = false) * @method static bool isReadable(string $path) * @method static bool isWritable(string $path) * @method static bool hasSameHash(string $firstFile, string $secondFile) * @method static bool isFile(string $file) * @method static array glob(string $pattern, int $flags = 0) * @method static \Symfony\Component\Finder\SplFileInfo[] files(string $directory, bool $hidden = false, array|string|int $depth = 0) * @method static \Symfony\Component\Finder\SplFileInfo[] allFiles(string $directory, bool $hidden = false) * @method static array directories(string $directory, array|string|int $depth = 0) * @method static array allDirectories(string $directory) * @method static void ensureDirectoryExists(string $path, int $mode = 0755, bool $recursive = true) * @method static bool makeDirectory(string $path, int $mode = 0755, bool $recursive = false, bool $force = false) * @method static bool moveDirectory(string $from, string $to, bool $overwrite = false) * @method static bool copyDirectory(string $directory, string $destination, int|null $options = null) * @method static bool deleteDirectory(string $directory, bool $preserve = false) * @method static bool deleteDirectories(string $directory) * @method static bool cleanDirectory(string $directory) * @method static \Illuminate\Filesystem\Filesystem|mixed when(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null) * @method static \Illuminate\Filesystem\Filesystem|mixed unless(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null) * @method static void macro(string $name, object|callable $macro) * @method static void mixin(object $mixin, bool $replace = true) * @method static bool hasMacro(string $name) * @method static void flushMacros() * * @see \Illuminate\Filesystem\Filesystem */ class File extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'files'; } }
Simpan