From 230d2e441f44fb91111db091816ab725f815d1e1 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 1a9071aa2d3bf..d845cdf47c1db 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; }