1: <?php
2:
3: namespace LaravelUi5\Core\Contracts;
4:
5: interface ExecutableInvokerInterface
6: {
7: /**
8: * Invoke a handler or provider method with resolved parameters and settings.
9: *
10: * @param object $target
11: * @param string $method
12: * @return mixed
13: */
14: public function invoke(object $target, string $method): mixed;
15: }
16: