Skip to content

Commit 051af1a

Browse files
committed
fix: conflicts resolved in apps.php loadDirectory
Signed-off-by: yemkareems <yemkareems@gmail.com>
1 parent ce3cec9 commit 051af1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/apps.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function loadDirectory($path): void {
1919
return;
2020
}
2121

22-
while ($name = readdir($dh)) {
22+
while (($name = readdir($dh)) !== false) {
2323
if ($name[0] === '.') {
2424
continue;
2525
}

0 commit comments

Comments
 (0)