From 13bfa5f0d03936d848c2ed82ecf5af13935d5c53 Mon Sep 17 00:00:00 2001 From: yemkareems Date: Tue, 12 Nov 2024 18:44:13 +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 cd173fff5d5e9..dba0b2618d2be 100644 --- a/tests/apps.php +++ b/tests/apps.php @@ -19,7 +19,7 @@ function loadDirectory($path): void { return; } - while ($name = readdir($dh)) { + while (($name = readdir($dh)) !== false) { if ($name[0] === '.') { continue; }