public function Definition::isSynthetic

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

@api

Return value

Boolean

File

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

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function isSynthetic() {
  return $this->synthetic;
}