ServiceCircularReferenceException.php 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\DependencyInjection\Exception;
  11. /**
  12. * This exception is thrown when a circular reference is detected.
  13. *
  14. * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  15. */
  16. class ServiceCircularReferenceException extends RuntimeException
  17. {
  18. private $serviceId;
  19. private $path;
  20. public function __construct(string $serviceId, array $path, \Throwable $previous = null)
  21. {
  22. parent::__construct(sprintf('Circular reference detected for service "%s", path: "%s".', $serviceId, implode(' -> ', $path)), 0, $previous);
  23. $this->serviceId = $serviceId;
  24. $this->path = $path;
  25. }
  26. public function getServiceId()
  27. {
  28. return $this->serviceId;
  29. }
  30. public function getPath()
  31. {
  32. return $this->path;
  33. }
  34. }