public function Definition::setAbstract

Whether this definition is abstract, that means it merely serves as a template for other definitions.

@api

Parameters

Boolean $boolean:

Return value

Definition the current instance

File

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

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function setAbstract($boolean) {
  $this->abstract = (bool) $boolean;
  return $this;
}