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:
Lenaick
2026-02-26 10:36:32 +01:00
committed by GitHub
parent d4821b7edc
commit fc967c06ce
961 changed files with 12298 additions and 7130 deletions

View File

@@ -26,8 +26,9 @@ class ServiceReferenceGraphEdge
private bool $lazy;
private bool $weak;
private bool $byConstructor;
private bool $byMultiUseArgument;
public function __construct(ServiceReferenceGraphNode $sourceNode, ServiceReferenceGraphNode $destNode, mixed $value = null, bool $lazy = false, bool $weak = false, bool $byConstructor = false)
public function __construct(ServiceReferenceGraphNode $sourceNode, ServiceReferenceGraphNode $destNode, mixed $value = null, bool $lazy = false, bool $weak = false, bool $byConstructor = false, bool $byMultiUseArgument = false)
{
$this->sourceNode = $sourceNode;
$this->destNode = $destNode;
@@ -35,6 +36,7 @@ class ServiceReferenceGraphEdge
$this->lazy = $lazy;
$this->weak = $weak;
$this->byConstructor = $byConstructor;
$this->byMultiUseArgument = $byMultiUseArgument;
}
/**
@@ -84,4 +86,9 @@ class ServiceReferenceGraphEdge
{
return $this->byConstructor;
}
public function isFromMultiUseArgument(): bool
{
return $this->byMultiUseArgument;
}
}