N°8910 - Upgrade Symfony packages (#811)

This commit is contained in:
Benjamin Dalsass
2026-02-23 06:54:26 +01:00
committed by GitHub
parent b91e6c384a
commit 4853ca444e
224 changed files with 4758 additions and 1778 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;
}
}