Skip to content

Commit

Permalink
renamded FileAccess::getDirectoryContents to directoryGetContents
Browse files Browse the repository at this point in the history
  • Loading branch information
dwilbourne committed Sep 10, 2024
1 parent 4f6a65c commit f83f9a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/storage/filesys/FileAccessInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public function directoryIsReadable(string $dirName): bool;

public function directoryIsWriteable(string $dirName): bool;

public function getDirectoryContents(string $dirName, bool $withDots = false, int $sortOrder = SCANDIR_SORT_ASCENDING): array|false;
public function directoryGetContents(string $dirName, bool $withDots = false, int $sortOrder =
SCANDIR_SORT_ASCENDING): array|false;

public function fileGetContents(string $fileName): string|false;

Expand Down

0 comments on commit f83f9a7

Please sign in to comment.