You are here

public function Definition::clearTags in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Definition.php \Symfony\Component\DependencyInjection\Definition::clearTags()

Clears the tags for this definition.

Return value

Definition The current instance

File

vendor/symfony/dependency-injection/Definition.php, line 510

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function clearTags() {
  $this->tags = array();
  return $this;
}