Automattic\WooCommerce\Vendor\League\Container\Definition
DefinitionAggregate::resolveTagged()
{@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() DefinitionAggregate::resolveTagged code WC 9.6.1
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; }