14 lines
210 B
PHP
14 lines
210 B
PHP
|
<?php namespace Phroute\Phroute;
|
||
|
|
||
|
interface HandlerResolverInterface {
|
||
|
|
||
|
/**
|
||
|
* Create an instance of the given handler.
|
||
|
*
|
||
|
* @param $handler
|
||
|
* @return array
|
||
|
*/
|
||
|
|
||
|
public function resolve($handler);
|
||
|
}
|