Automattic\WooCommerce\Vendor\League\Container
Container::extend()
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() Container::extend code WC 9.7.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) ); }