back_gestalt/vendor/craft-group/phroute/src/Phroute/HandlerResolverInterface.php

14 lines
210 B
PHP
Raw Normal View History

2024-07-03 14:41:15 +03:00
<?php namespace Phroute\Phroute;
interface HandlerResolverInterface {
/**
* Create an instance of the given handler.
*
* @param $handler
* @return array
*/
public function resolve($handler);
}