mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-28 09:51:21 -06:00
27 lines
488 B
PHP
27 lines
488 B
PHP
|
<?php
|
||
|
/**
|
||
|
* BinderInterface.php
|
||
|
* Copyright (C) 2016 Sander Dorigo
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
namespace FireflyIII\Support\Binder;
|
||
|
|
||
|
/**
|
||
|
* Interface BinderInterface
|
||
|
*
|
||
|
* @package FireflyIII\Support\Binder
|
||
|
*/
|
||
|
interface BinderInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param $value
|
||
|
* @param $route
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public static function routeBinder($value, $route);
|
||
|
|
||
|
}
|