File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Support/Facades
Upload
[..]
Artisan.php (1.91 KB)
Edit
Rename
Del
Blade.php (3.06 KB)
Edit
Rename
Del
Broadcast.php (2.75 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
Cookie.php (2.39 KB)
Edit
Rename
Del
Date.php (8.18 KB)
Edit
Rename
Del
Facade.php (9.11 KB)
Edit
Rename
Del
Http.php (10.74 KB)
Edit
Rename
Del
Lang.php (2.35 KB)
Edit
Rename
Del
MaintenanceMode.php (948 B)
Edit
Rename
Del
Notification.php (4.04 KB)
Edit
Rename
Del
Pipeline.php (1.62 KB)
Edit
Rename
Del
Queue.php (8.02 KB)
Edit
Rename
Del
Redirect.php (2.33 KB)
Edit
Rename
Del
Redis.php (23.75 KB)
Edit
Rename
Del
Response.php (2.94 KB)
Edit
Rename
Del
URL.php (3.89 KB)
Edit
Rename
Del
View.php (5.5 KB)
Edit
Rename
Del
Vite.php (2.52 KB)
Edit
Rename
Del
Edit: Config.php
<?php namespace Illuminate\Support\Facades; /** * @method static bool has(string $key) * @method static mixed get(array|string $key, mixed $default = null) * @method static array getMany(array $keys) * @method static string string(string $key, \Closure|string|null $default = null) * @method static int integer(string $key, \Closure|int|null $default = null) * @method static float float(string $key, \Closure|float|null $default = null) * @method static bool boolean(string $key, \Closure|bool|null $default = null) * @method static array array(string $key, \Closure|array|null $default = null) * @method static \Illuminate\Support\Collection collection(string $key, \Closure|array|null $default = null) * @method static void set(array|string $key, mixed $value = null) * @method static void prepend(string $key, mixed $value) * @method static void push(string $key, mixed $value) * @method static array all() * @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\Config\Repository */ class Config extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'config'; } }
Simpan