From 3b336466e41182b6baa28989b3bc2086969ddc9e Mon Sep 17 00:00:00 2001 From: yemkareems Date: Wed, 13 Nov 2024 09:10:35 +0530 Subject: [PATCH] fix: conflicts resolved in apps.php loadDirectory Signed-off-by: yemkareems --- tests/apps.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/apps.php b/tests/apps.php index 1a9071aa2d3..d845cdf47c1 100644 --- a/tests/apps.php +++ b/tests/apps.php @@ -14,7 +14,7 @@ function loadDirectory($path): void { return; } - while ($name = readdir($dh)) { + while (($name = readdir($dh)) !== false) { if ($name[0] === '.') { continue; } -- 2.39.5