Automattic\WooCommerce\Vendor\League\Container\Definition

DefinitionAggregate::resolveTagged()publicWC 1.0

{@inheritdoc}

Method of the class: DefinitionAggregate{}

No Hooks.

Return

null. Nothing (null).

Usage

$DefinitionAggregate = new DefinitionAggregate();
$DefinitionAggregate->resolveTagged( $tag, $new ) : array;
$tag(string) (required)
-
$new(true|false)
-
Default: false

DefinitionAggregate::resolveTagged() code WC 8.7.0

public function resolveTagged(string $tag, bool $new = false) : array
{
    $arrayOf = [];

    foreach ($this->getIterator() as $definition) {
        if ($definition->hasTag($tag)) {
            $arrayOf[] = $definition->setLeagueContainer($this->getLeagueContainer())->resolve($new);
        }
    }

    return $arrayOf;
}