Fix null path confirmation rows
This commit is contained in:
@@ -4319,8 +4319,10 @@ class selfserve_studio_graph
|
||||
int $terminalPathCount,
|
||||
array $questionIds,
|
||||
array $progress = [],
|
||||
array $confirmationRows = []
|
||||
?array $confirmationRows = null
|
||||
): array {
|
||||
$confirmationRows = $confirmationRows ?? [];
|
||||
|
||||
usort($outcomes, static fn(array $left, array $right): int => ((int)($right['path_count'] ?? 0) <=> (int)($left['path_count'] ?? 0))
|
||||
?: strcmp((string)($left['summary'] ?? ''), (string)($right['summary'] ?? '')));
|
||||
foreach ($outcomes as $index => &$outcome) {
|
||||
|
||||
Reference in New Issue
Block a user