Skip to content

Commit

Permalink
fix: conflicts resolved in apps.php loadDirectory
Browse files Browse the repository at this point in the history
Signed-off-by: yemkareems <[email protected]>
  • Loading branch information
yemkareems committed Nov 13, 2024
1 parent 1fc1543 commit 3b33646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/apps.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function loadDirectory($path): void {
return;
}

while ($name = readdir($dh)) {
while (($name = readdir($dh)) !== false) {
if ($name[0] === '.') {
continue;
}
Expand Down

0 comments on commit 3b33646

Please sign in to comment.