You are here

public function ScopeWideningInjectionException::__construct in Zircon Profile 8

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

File

vendor/symfony/dependency-injection/Exception/ScopeWideningInjectionException.php, line 26

Class

ScopeWideningInjectionException
Thrown when a scope widening injection is detected.

Namespace

Symfony\Component\DependencyInjection\Exception

Code

public function __construct($sourceServiceId, $sourceScope, $destServiceId, $destScope, \Exception $previous = null) {
  parent::__construct(sprintf('Scope Widening Injection detected: The definition "%s" references the service "%s" which belongs to a narrower scope. ' . 'Generally, it is safer to either move "%s" to scope "%s" or alternatively rely on the provider pattern by injecting the container itself, and requesting the service "%s" each time it is needed. ' . 'In rare, special cases however that might not be necessary, then you can set the reference to strict=false to get rid of this error.', $sourceServiceId, $destServiceId, $sourceServiceId, $destScope, $destServiceId), 0, $previous);
  $this->sourceServiceId = $sourceServiceId;
  $this->sourceScope = $sourceScope;
  $this->destServiceId = $destServiceId;
  $this->destScope = $destScope;
}