IMMREX7

aku nok ndi : /home/spdtg/www/gomygps/vendor/filp/whoops/src/Whoops/Handler/
File Up :
aku nok ndi : /home/spdtg/www/gomygps/vendor/filp/whoops/src/Whoops/Handler/HandlerInterface.php

<?php
/**
 * Whoops - php errors for cool kids
 * @author Filipe Dobreira <http://github.com/filp>
 */

namespace Whoops\Handler;

use Whoops\Inspector\InspectorInterface;
use Whoops\RunInterface;

interface HandlerInterface
{
    /**
     * @return int|null A handler may return nothing, or a Handler::HANDLE_* constant
     */
    public function handle();

    /**
     * @param  RunInterface  $run
     * @return void
     */
    public function setRun(RunInterface $run);

    /**
     * @param  \Throwable $exception
     * @return void
     */
    public function setException($exception);

    /**
     * @param  InspectorInterface $inspector
     * @return void
     */
    public function setInspector(InspectorInterface $inspector);
}

Copyright © 2021 - 2025 IMMREX7