golden hour
/opt/cpanel/ea-wappspector/vendor/php-di/invoker/src
⬆️ Go Up
Upload
File/Folder
Size
Actions
CallableResolver.php
3.62 KB
Del
OK
Exception
-
Del
OK
Invoker.php
3.26 KB
Del
OK
InvokerInterface.php
726 B
Del
OK
ParameterResolver
-
Del
OK
Reflection
-
Del
OK
Edit: InvokerInterface.php
<?php declare(strict_types=1); namespace Invoker; use Invoker\Exception\InvocationException; use Invoker\Exception\NotCallableException; use Invoker\Exception\NotEnoughParametersException; /** * Invoke a callable. */ interface InvokerInterface { /** * Call the given function using the given parameters. * * @param callable|array|string $callable Function to call. * @param array $parameters Parameters to use. * @return mixed Result of the function. * @throws InvocationException Base exception class for all the sub-exceptions below. * @throws NotCallableException * @throws NotEnoughParametersException */ public function call($callable, array $parameters = []); }
Save