# elementor/3.27.0-dev2/vendor_prefixed/php-di/invoker/src/InvokerInterface.php

Elementor Website Builder – more than just a page builder, version 3.27.0-dev2. 26 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.27.0-dev2/code/vendor_prefixed/php-di/invoker/src/InvokerInterface.php
- Raw: https://pluginprobe.com/plugins/elementor/3.27.0-dev2/raw/vendor_prefixed/php-di/invoker/src/InvokerInterface.php
- Modified: 2024-10-28T11:08:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.27.0-dev2/code/vendor_prefixed/php-di/invoker/src/InvokerInterface.php#L10-L20`.

```php
<?php

declare (strict_types=1);
namespace ElementorDeps\Invoker;

use ElementorDeps\Invoker\Exception\InvocationException;
use ElementorDeps\Invoker\Exception\NotCallableException;
use ElementorDeps\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 = []);
}

```
