WooCommerce Code Reference

AbstractDependencyType
in package

An abstract class for dependency types.

Dependency types are instances of a dependency used by the Dependency Injection Container for storing dependencies to invoke as they are needed.

Tags
since
2.5.0

Table of Contents

$callable_or_value  : mixed
Holds a callable or value provided for this type.
__construct()  : mixed
Constructor
get()  : void
Retrieves the value stored internally for this DependencyType
resolve_value()  : mixed
Resolver for the internal dependency value.

Properties

Methods

__construct()

Constructor

public __construct(mixed $callable_or_value) : mixed
Parameters
$callable_or_value : mixed

A callable or value for the dependency type instance.

Return values
mixed