PHP 8.2.31
Preview: ParameterResolver.php Size: 972 B
//opt/cpanel/ea-wappspector/vendor/php-di/invoker/src/ParameterResolver/ParameterResolver.php

<?php declare(strict_types=1);

namespace Invoker\ParameterResolver;

use ReflectionFunctionAbstract;

/**
 * Resolves the parameters to use to call the callable.
 */
interface ParameterResolver
{
    /**
     * Resolves the parameters to use to call the callable.
     *
     * `$resolvedParameters` contains parameters that have already been resolved.
     *
     * Each ParameterResolver must resolve parameters that are not already
     * in `$resolvedParameters`. That allows to chain multiple ParameterResolver.
     *
     * @param ReflectionFunctionAbstract $reflection Reflection object for the callable.
     * @param array $providedParameters Parameters provided by the caller.
     * @param array $resolvedParameters Parameters resolved (indexed by parameter position).
     * @return array
     */
    public function getParameters(
        ReflectionFunctionAbstract $reflection,
        array $providedParameters,
        array $resolvedParameters
    );
}

Directory Contents

Dirs: 1 × Files: 6

Name Size Perms Modified Actions
Container DIR
- drwxr-xr-x 2025-08-30 10:22:22
Edit Download
1.08 KB lrw-r--r-- 2025-08-30 10:22:22
Edit Download
1.34 KB lrw-r--r-- 2025-08-30 10:22:22
Edit Download
1.04 KB lrw-r--r-- 2025-08-30 10:22:22
Edit Download
972 B lrw-r--r-- 2025-08-30 10:22:22
Edit Download
1.58 KB lrw-r--r-- 2025-08-30 10:22:22
Edit Download
1.58 KB lrw-r--r-- 2025-08-30 10:22:22
Edit Download

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