%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/ugotscom/kma/vendor/botman/botman/src/Handlers/
Upload File :
Create Path :
Current File : /home/ugotscom/kma/vendor/botman/botman/src/Handlers/ExceptionHandler.php

<?php

namespace BotMan\BotMan\Handlers;

use BotMan\BotMan\BotMan;
use BotMan\BotMan\Interfaces\ExceptionHandlerInterface;
use Illuminate\Support\Collection;

class ExceptionHandler implements ExceptionHandlerInterface
{
    protected $exceptions = [];

    public function __construct()
    {
        $this->exceptions = Collection::make();
    }

    /**
     * Handle an exception.
     *
     * @param  \Throwable $e
     * @param BotMan $bot
     * @return mixed
     * @throws \Throwable
     */
    public function handleException($e, BotMan $bot)
    {
        $class = get_class($e);
        $handler = $this->exceptions->get($class);

        // Exact exception handler found, call it.
        if ($handler !== null) {
            call_user_func_array($handler, [$e, $bot]);

            return;
        }

        $parentExceptions = Collection::make(class_parents($class));

        foreach ($parentExceptions as $exceptionClass) {
            if ($this->exceptions->has($exceptionClass)) {
                call_user_func_array($this->exceptions->get($exceptionClass), [$e, $bot]);

                return;
            }
        }

        // No matching parent exception, throw the exception away
        throw $e;
    }

    /**
     * Register a new exception type.
     *
     * @param string $exception
     * @param callable $closure
     * @return void
     */
    public function register(string $exception, callable $closure)
    {
        $this->exceptions->put($exception, $closure);
    }
}

Zerion Mini Shell 1.0