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
Exceptions.php (3.57 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: Exceptions.php
<?php namespace Illuminate\Support\Facades; use Illuminate\Contracts\Debug\ExceptionHandler; use Illuminate\Support\Arr; use Illuminate\Support\Testing\Fakes\ExceptionHandlerFake; /** * @method static void register() * @method static \Illuminate\Foundation\Exceptions\ReportableHandler reportable(callable $reportUsing) * @method static \Illuminate\Foundation\Exceptions\Handler renderable(callable $renderUsing) * @method static \Illuminate\Foundation\Exceptions\Handler map(\Closure|string $from, \Closure|string|null $to = null) * @method static \Illuminate\Foundation\Exceptions\Handler dontReport(array|string $exceptions) * @method static \Illuminate\Foundation\Exceptions\Handler dontReportWhen(callable $dontReportWhen) * @method static \Illuminate\Foundation\Exceptions\Handler ignore(array|string $exceptions) * @method static \Illuminate\Foundation\Exceptions\Handler dontFlash(array|string $attributes) * @method static \Illuminate\Foundation\Exceptions\Handler level(string $type, string $level) * @method static void report(\Throwable $e) * @method static bool isReporting(\Throwable $e) * @method static bool shouldReport(\Throwable $e) * @method static \Illuminate\Foundation\Exceptions\Handler throttleUsing(callable $throttleUsing) * @method static \Illuminate\Foundation\Exceptions\Handler stopIgnoring(array|string $exceptions) * @method static array buildContextForException(\Throwable $e) * @method static \Illuminate\Foundation\Exceptions\Handler buildContextUsing(\Closure $contextCallback) * @method static \Symfony\Component\HttpFoundation\Response render(\Illuminate\Http\Request $request, \Throwable $e) * @method static \Illuminate\Foundation\Exceptions\Handler respondUsing(callable $callback) * @method static \Illuminate\Foundation\Exceptions\Handler shouldRenderJsonWhen(callable $callback) * @method static \Illuminate\Foundation\Exceptions\Handler dontReportDuplicates() * @method static \Illuminate\Contracts\Debug\ExceptionHandler handler() * @method static void assertReported(\Closure|string $exception) * @method static void assertReportedCount(int $count) * @method static void assertNotReported(\Closure|string $exception) * @method static void assertNothingReported() * @method static void renderForConsole(\Symfony\Component\Console\Output\OutputInterface $output, \Throwable $e) * @method static \Illuminate\Support\Testing\Fakes\ExceptionHandlerFake throwOnReport() * @method static \Illuminate\Support\Testing\Fakes\ExceptionHandlerFake throwFirstReported() * @method static array reported() * @method static \Illuminate\Support\Testing\Fakes\ExceptionHandlerFake setHandler(\Illuminate\Contracts\Debug\ExceptionHandler $handler) * * @see \Illuminate\Foundation\Exceptions\Handler * @see \Illuminate\Support\Testing\Fakes\ExceptionHandlerFake */ class Exceptions extends Facade { /** * Replace the bound instance with a fake. * * @param array<int, class-string<\Throwable>>|class-string<\Throwable> $exceptions * @return \Illuminate\Support\Testing\Fakes\ExceptionHandlerFake */ public static function fake(array|string $exceptions = []) { $exceptionHandler = static::isFake() ? static::getFacadeRoot()->handler() : static::getFacadeRoot(); return tap(new ExceptionHandlerFake($exceptionHandler, Arr::wrap($exceptions)), function ($fake) { static::swap($fake); }); } /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return ExceptionHandler::class; } }
Simpan