From 051af1a8b99b82d08a7a8c69bd5d9cbc666e91ce Mon Sep 17 00:00:00 2001 From: yemkareems Date: Tue, 12 Nov 2024 18:46:45 +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 cd173fff5d5..dba0b2618d2 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; } -- 2.39.5