mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-17 14:28:53 +02:00
N°8834 - Add compatibility with PHP 8.4 (#819)
* N°8834 - Add compatibility with PHP 8.4 * Rollback of scssphp/scssphp version upgrade due to compilation error
This commit is contained in:
@@ -21,9 +21,9 @@ class ServiceCircularReferenceException extends RuntimeException
|
||||
private string $serviceId;
|
||||
private array $path;
|
||||
|
||||
public function __construct(string $serviceId, array $path, \Throwable $previous = null)
|
||||
public function __construct(string $serviceId, array $path, ?\Throwable $previous = null)
|
||||
{
|
||||
parent::__construct(sprintf('Circular reference detected for service "%s", path: "%s".', $serviceId, implode(' -> ', $path)), 0, $previous);
|
||||
parent::__construct(\sprintf('Circular reference detected for service "%s", path: "%s".', $serviceId, implode(' -> ', $path)), 0, $previous);
|
||||
|
||||
$this->serviceId = $serviceId;
|
||||
$this->path = $path;
|
||||
|
||||
Reference in New Issue
Block a user