You are here

public function Definition::setAbstract in Zircon Profile 8

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

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

Parameters

bool $boolean:

Return value

Definition the current instance

File

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

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

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