Automattic\WooCommerce\Vendor\League\Container

Container::extend()publicWC 1.0

Get a definition to extend.

Method of the class: Container{}

No Hooks.

Return

DefinitionInterface.

Usage

$Container = new Container();
$Container->extend( $id ) : DefinitionInterface;
$id(string) (required)
[description]

Container::extend() code WC 8.6.1

public function extend(string $id) : DefinitionInterface
{
    if ($this->providers->provides($id)) {
        $this->providers->register($id);
    }

    if ($this->definitions->has($id)) {
        return $this->definitions->getDefinition($id);
    }

    throw new NotFoundException(
        sprintf('Unable to extend alias (%s) as it is not being managed as a definition', $id)
    );
}