From a18360b5ac928070886f614a7ef8ccdfb3cfd7bb Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 26 Jan 2020 12:37:55 +0100 Subject: [PATCH] fix = alignment --- Stdlib/Graph/Graph.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Stdlib/Graph/Graph.php b/Stdlib/Graph/Graph.php index 604a81740..9a3df16cc 100644 --- a/Stdlib/Graph/Graph.php +++ b/Stdlib/Graph/Graph.php @@ -349,8 +349,8 @@ class Graph return false; } - $visited[$node] = true; - $stack[$node] = true; + $visited[$node] = true; + $stack[$node] = true; $neighbors = $this->nodes[$node]->getNeighbors(); foreach ($neighbors as $neighbor) {