Nelmio\Alice\Generator\Resolver\Value\Chainable\PhpFunctionCallValueResolver::__construct PHP Method

__construct() public method

public __construct ( array $functionBlacklist, Nelmio\Alice\Generator\ValueResolverInterface $decoratedResolver )
$functionBlacklist array List of PHP native function that will be skipped, i.e. will be considered as non existent
$decoratedResolver Nelmio\Alice\Generator\ValueResolverInterface
    public function __construct(array $functionBlacklist, ValueResolverInterface $decoratedResolver)
    {
        $this->functionBlacklist = array_flip($functionBlacklist);
        $this->resolver = $decoratedResolver;
    }
PhpFunctionCallValueResolver