JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr gilour

File "CallableDispatcher.php"

Full Path: /home/mipedido/web/mipedido.app/public_html/vendor/laravel/framework/src/Illuminate/Routing/Contracts/CallableDispatcher.php
File size: 342 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Illuminate\Routing\Contracts;

use Illuminate\Routing\Route;

interface CallableDispatcher
{
    /**
     * Dispatch a request to a given callable.
     *
     * @param  \Illuminate\Routing\Route  $route
     * @param  callable  $callable
     * @return mixed
     */
    public function dispatch(Route $route, $callable);
}