You are here

public function ContainerBuilder::isTrackingResources in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/ContainerBuilder.php \Symfony\Component\DependencyInjection\ContainerBuilder::isTrackingResources()

Checks if resources are tracked.

Return value

bool true if resources are tracked, false otherwise

File

vendor/symfony/dependency-injection/ContainerBuilder.php, line 109

Class

ContainerBuilder
ContainerBuilder is a DI container that provides an API to easily describe services.

Namespace

Symfony\Component\DependencyInjection

Code

public function isTrackingResources() {
  return $this->trackResources;
}