mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-03 20:55:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			530 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			530 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
declare(strict_types = 1);
 | 
						|
/**
 | 
						|
 * BinderInterface.php
 | 
						|
 * Copyright (C) 2016 thegrumpydictator@gmail.com
 | 
						|
 *
 | 
						|
 * 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);
 | 
						|
 | 
						|
}
 |