HandleQueuedMessage::__sleep()

array __sleep() Prepare the instance for serialization. Return Value array

HandleQueuedMessage::__construct()

void __construct(string $view, array $data, Closure $callback) Create a new job instance. Parameters string $view array $data Closure $callback Return Value void

HandleQueuedMessage::handle()

void handle(Mailer $mailer) Handle the queued job. Parameters Mailer $mailer Return Value void

HandleQueuedMessage

HandleQueuedMessage class HandleQueuedMessage (View source) Traits SerializesAndRestoresModelIdentifiers

HandleExceptions::handleShutdown()

void handleShutdown() Handle the PHP shutdown event. Return Value void

HandleExceptions::handleException()

void handleException(Throwable $e) Handle an uncaught exception from the application. Note: Most exceptions can be handled via the try / catch block in the HTTP and Console kernels. But, fatal error exceptions must be handled differently since they are not normal exceptions. Parameters Throwable $e Return Value void

HandleExceptions::handleError()

void handleError(int $level, string $message, string $file = '', int $line, array $context = array()) Convert a PHP error to an ErrorException. Parameters int $level string $message string $file int $line array $context Return Value void Exceptions ErrorException

HandleExceptions::bootstrap()

void bootstrap(Application $app) Bootstrap the given application. Parameters Application $app Return Value void

HandleExceptions

HandleExceptions class HandleExceptions (View source) Methods void bootstrap(Application $app) Bootstrap the given application. void handleError(int $level, string $message, string $file = '', int $line, array $context = array()) Convert a PHP error to an ErrorException. void handleException(Throwable $e) Handle an uncaught exception from the application. void handleShutdown() Handle the PHP shutdown event.

GuardHelpers::setUser()

$this setUser(Authenticatable $user) Set the current user. Parameters Authenticatable $user Return Value $this