Hacked By AnonymousFox

Current Path : /var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/vendor/league/container/src/Argument/
Upload File :
Current File : //var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/vendor/league/container/src/Argument/ArgumentResolverInterface.php

<?php declare(strict_types=1);

namespace Automattic\Kkart\Vendor\League\Container\Argument;

use Automattic\Kkart\Vendor\League\Container\ContainerAwareInterface;
use ReflectionFunctionAbstract;

interface ArgumentResolverInterface extends ContainerAwareInterface
{
    /**
     * Resolve an array of arguments to their concrete implementations.
     *
     * @param array $arguments
     *
     * @return array
     */
    public function resolveArguments(array $arguments) : array;

    /**
     * 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 = []) : array;
}

Hacked By AnonymousFox1.0, Coded By AnonymousFox