ServiceCircularReferenceException.php in Service Container 7.2
File
modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Exception/ServiceCircularReferenceException.php
View source
<?php
namespace Symfony\Component\DependencyInjection\Exception;
class ServiceCircularReferenceException extends RuntimeException {
private $serviceId;
private $path;
public function __construct($serviceId, array $path, \Exception $previous = null) {
parent::__construct(sprintf('Circular reference detected for service "%s", path: "%s".', $serviceId, implode(' -> ', $path)), 0, $previous);
$this->serviceId = $serviceId;
$this->path = $path;
}
public function getServiceId() {
return $this->serviceId;
}
public function getPath() {
return $this->path;
}
}