Automattic\WooCommerce\Internal\DependencyManagement
AbstractServiceProvider::share
Register a shared entry in the container (get always returns the same instance).
Method of the class: AbstractServiceProvider{}
No Hooks.
Returns
DefinitionInterface
. The generated container definition.
Usage
// protected - for code of main (parent) or child class $result = $this->share( $id, $concrete ) : DefinitionInterface;
- $id(string) (required)
- Entry id (typically a class or interface name).
- $concrete(mixed|null)
- Concrete entity to register under that id, null for automatic creation.
Default: null
AbstractServiceProvider::share() AbstractServiceProvider::share code WC 9.9.4
protected function share( string $id, $concrete = null ) : DefinitionInterface { return $this->add( $id, $concrete, true ); }