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
Crypt.php (928 B)
Edit
Rename
Del
Date.php (8.18 KB)
Edit
Rename
Del
Facade.php (9.11 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
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
Request.php (11.82 KB)
Edit
Rename
Del
Response.php (2.94 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: Log.php
<?php namespace Illuminate\Support\Facades; /** * @method static \Psr\Log\LoggerInterface build(array $config) * @method static \Psr\Log\LoggerInterface stack(array $channels, string|null $channel = null) * @method static \Psr\Log\LoggerInterface channel(\UnitEnum|string|null $channel = null) * @method static \Psr\Log\LoggerInterface driver(\UnitEnum|string|null $driver = null) * @method static \Illuminate\Log\LogManager shareContext(array $context) * @method static array sharedContext() * @method static \Illuminate\Log\LogManager withoutContext(string[]|null $keys = null) * @method static \Illuminate\Log\LogManager flushSharedContext() * @method static string|null getDefaultDriver() * @method static void setDefaultDriver(\UnitEnum|string $name) * @method static \Illuminate\Log\LogManager extend(string $driver, \Closure $callback) * @method static void forgetChannel(string|null $driver = null) * @method static array getChannels() * @method static void emergency(string|\Stringable $message, array $context = []) * @method static void alert(string|\Stringable $message, array $context = []) * @method static void critical(string|\Stringable $message, array $context = []) * @method static void error(string|\Stringable $message, array $context = []) * @method static void warning(string|\Stringable $message, array $context = []) * @method static void notice(string|\Stringable $message, array $context = []) * @method static void info(string|\Stringable $message, array $context = []) * @method static void debug(string|\Stringable $message, array $context = []) * @method static void log(mixed $level, string|\Stringable $message, array $context = []) * @method static \Illuminate\Log\LogManager setApplication(\Illuminate\Contracts\Foundation\Application $app) * @method static void write(string $level, \Illuminate\Contracts\Support\Arrayable|\Illuminate\Contracts\Support\Jsonable|\Illuminate\Support\Stringable|array|string $message, array $context = []) * @method static \Illuminate\Log\Logger withContext(array $context = []) * @method static void listen(\Closure $callback) * @method static \Psr\Log\LoggerInterface getLogger() * @method static \Illuminate\Contracts\Events\Dispatcher|null getEventDispatcher() * @method static void setEventDispatcher(\Illuminate\Contracts\Events\Dispatcher $dispatcher) * @method static \Illuminate\Log\Logger|mixed when(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null) * @method static \Illuminate\Log\Logger|mixed unless(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null) * * @see \Illuminate\Log\LogManager */ class Log extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'log'; } }
Simpan