PHP 8.2.31
Preview: InvokerInterface.php Size: 726 B
//opt/cpanel/ea-wappspector/vendor/php-di/invoker/src/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 = []);
}

Directory Contents

Dirs: 3 × Files: 3

Name Size Perms Modified Actions
Exception DIR
- drwxr-xr-x 2025-08-30 10:22:22
Edit Download
- drwxr-xr-x 2025-08-30 10:22:22
Edit Download
- drwxr-xr-x 2025-08-30 10:22:22
Edit Download
3.62 KB lrw-r--r-- 2025-08-30 10:22:22
Edit Download
3.26 KB lrw-r--r-- 2025-08-30 10:22:22
Edit Download
726 B lrw-r--r-- 2025-08-30 10:22:22
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).