/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Routing
/
Contracts
/
Upload File
HOME
<?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); }