Files
2026-04-28 15:13:50 +02:00

15 lines
410 B
PHP

<?php
declare(strict_types=1);
namespace WCPay\Vendor\League\Container\Argument;
use WCPay\Vendor\League\Container\ContainerAwareInterface;
use ReflectionFunctionAbstract;
interface ArgumentResolverInterface extends ContainerAwareInterface
{
public function resolveArguments(array $arguments): array;
public function reflectArguments(ReflectionFunctionAbstract $method, array $args = []): array;
}