Skip to content

Commit

Permalink
var_dump
Browse files Browse the repository at this point in the history
  • Loading branch information
fogelito committed Sep 3, 2024
1 parent 9c89ea2 commit f3161b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/Device/Local.php
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ public function getFiles(string $dir, int $max = self::MAX_PAGE_SIZE, string $co
}

$files = [];

var_dump(\scandir($dir));
foreach (\scandir($dir) as $file) {
if ($file === '.' || $file === '..') {
continue;
Expand Down

0 comments on commit f3161b7

Please sign in to comment.