Node: var_export() param#2 expects bool

This commit is contained in:
Sukhwinder Dhillon 2023-08-14 11:53:25 +02:00
parent ad3cb81dc9
commit 6934016ef0

View file

@ -443,7 +443,7 @@ abstract class Node
throw new ProgrammingError(
'Got invalid state for node %s: %s',
$this->getName(),
var_export($state, 1) . var_export($this->stateToSortStateMap, 1)
var_export($state, true) . var_export($this->stateToSortStateMap, true)
);
}