You are here

public function Definition::setSynthetic in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Definition.php \Symfony\Component\DependencyInjection\Definition::setSynthetic()

Sets whether this definition is synthetic, that is not constructed by the container, but dynamically injected.

@api

Parameters

bool $boolean:

Return value

Definition the current instance

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Definition.php, line 730

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function setSynthetic($boolean) {
  $this->synthetic = (bool) $boolean;
  return $this;
}