27 lines
739 B
PHP
27 lines
739 B
PHP
<?php
|
|
|
|
namespace WP_Rocket\Engine\Container\Argument;
|
|
|
|
use WP_Rocket\Engine\Container\ImmutableContainerAwareInterface;
|
|
use ReflectionFunctionAbstract;
|
|
|
|
interface ArgumentResolverInterface extends ImmutableContainerAwareInterface
|
|
{
|
|
/**
|
|
* Resolve an array of arguments to their concrete implementations.
|
|
*
|
|
* @param array $arguments
|
|
* @return array
|
|
*/
|
|
public function resolveArguments(array $arguments);
|
|
|
|
/**
|
|
* Resolves the correct arguments to be passed to a method.
|
|
*
|
|
* @param \ReflectionFunctionAbstract $method
|
|
* @param array $args
|
|
* @return array
|
|
*/
|
|
public function reflectArguments(ReflectionFunctionAbstract $method, array $args = []);
|
|
}
|