public function Definition::clearTags

Clears the tags for this definition.

@api

Return value

Definition The current instance

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Definition.php, line 477

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

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