back_gestalt/vendor/craft-group/phroute/src/Phroute/HandlerResolverInterface.php
2024-07-03 14:41:15 +03:00

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);
}