Automattic\WooCommerce\Vendor\League\Container\Definition

DefinitionAggregate::resolveTagged()publicWC 1.0

{@inheritdoc}

Метод класса: DefinitionAggregate{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$DefinitionAggregate = new DefinitionAggregate();
$DefinitionAggregate->resolveTagged( $tag, $new ) : array;
$tag(строка) (обязательный)
-
$new(true|false)
-
По умолчанию: false

Код DefinitionAggregate::resolveTagged() 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;
}