. */ declare(strict_types=1); namespace FireflyIII\Support\Binder; use Illuminate\Routing\Route; /** * Interface BinderInterface. */ interface BinderInterface { /** * @param string $value * @param Route $route * * @return mixed */ public static function routeBinder(string $value, Route $route); }