Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class DefaultResolver implements ResolverInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $namespace; |
||
27 | |||
28 | /** |
||
29 | * set the namespace to search thru |
||
30 | */ |
||
31 | public function __construct(string $namespace = '') |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * Resolve [controllerName, methodName] to a callable |
||
38 | * |
||
39 | * {@inheritDoc} |
||
40 | */ |
||
41 | public function resolve($notCallable): callable |
||
56 |