PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Contracts
/
Routing
<?php namespace Illuminate\Contracts\Routing; interface BindingRegistrar { /** * Add a new route parameter binder. * * @param string $key * @param string|callable $binder * @return void */ public function bind($key, $binder); /** * Get the binding callback for a given binding. * * @param string $key * @return \Closure */ public function getBindingCallback($key); }
[-] Registrar.php
[edit]
[+]
..
[-] BindingRegistrar.php
[edit]
[-] UrlRoutable.php
[edit]
[-] ResponseFactory.php
[edit]
[-] UrlGenerator.php
[edit]