firefly-iii/app/Support/Binder/BinderInterface.php

30 lines
531 B
PHP
Raw Normal View History

2016-01-09 08:39:34 -06:00
<?php
/**
* BinderInterface.php
2016-04-01 09:44:46 -05:00
* Copyright (C) 2016 thegrumpydictator@gmail.com
2016-01-09 08:39:34 -06:00
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
declare(strict_types = 1);
2016-01-09 08:39:34 -06:00
namespace FireflyIII\Support\Binder;
/**
* Interface BinderInterface
*
* @package FireflyIII\Support\Binder
*/
interface BinderInterface
{
/**
* @param $value
* @param $route
*
* @return mixed
*/
public static function routeBinder($value, $route);
}