Skip to content

Commit 1463e24

Browse files
committed
fix: conflicts resolved in apps.php loadDirectory
Signed-off-by: yemkareems <[email protected]>
1 parent 5698a2d commit 1463e24

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)