15 lines
410 B
PHP
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;
|
|
}
|