Automattic\WooCommerce\Vendor\League\Container\Definition

DefinitionAggregateInterface{}WC 1.0

Хуков нет.

Использование

$DefinitionAggregateInterface = new DefinitionAggregateInterface();
// use class methods

Методы

  1. public add(string $id, $definition, bool $shared = false)
  2. public getDefinition(string $id)
  3. public has(string $id)
  4. public hasTag(string $tag)
  5. public resolve(string $id, bool $new = false)
  6. public resolveTagged(string $tag, bool $new = false)

Код DefinitionAggregateInterface{} WC 8.7.0

interface DefinitionAggregateInterface extends ContainerAwareInterface, IteratorAggregate
{
    /**
     * Add a definition to the aggregate.
     *
     * @param string  $id
     * @param mixed   $definition
     * @param boolean $shared
     *
     * @return DefinitionInterface
     */
    public function add(string $id, $definition, bool $shared = false) : DefinitionInterface;

    /**
     * Checks whether alias exists as definition.
     *
     * @param string $id
     *
     * @return boolean
     */
    public function has(string $id) : bool;

    /**
     * Checks whether tag exists as definition.
     *
     * @param string $tag
     *
     * @return boolean
     */
    public function hasTag(string $tag) : bool;

    /**
     * Get the definition to be extended.
     *
     * @param string $id
     *
     * @return DefinitionInterface
     */
    public function getDefinition(string $id) : DefinitionInterface;

    /**
     * Resolve and build a concrete value from an id/alias.
     *
     * @param string  $id
     * @param boolean $new
     *
     * @return mixed
     */
    public function resolve(string $id, bool $new = false);

    /**
     * Resolve and build an array of concrete values from a tag.
     *
     * @param string  $tag
     * @param boolean $new
     *
     * @return mixed
     */
    public function resolveTagged(string $tag, bool $new = false);
}