diff --git a/src/Client.php b/src/Client.php index f06eb1a..0c2ed99 100644 --- a/src/Client.php +++ b/src/Client.php @@ -257,6 +257,7 @@ public function download(array $options) /** * Retrieve a collection of File objects representing the files stored inside a bucket. + * // @TODO: allow specifying bucket via its name. * * @param array $options * @return array @@ -275,7 +276,7 @@ public function listFiles(array $options) 'json' => [ 'bucketId' => $options['BucketId'], 'startFileName' => $nextFileName, - 'maxFileCount' => 10 + 'maxFileCount' => 1000 ] ]); @@ -296,6 +297,7 @@ public function listFiles(array $options) /** * Returns a single File object representing a file stored on B2. + * @TODO: allow specifying file via its name and bucket. * * @param array $options * @return File @@ -323,6 +325,7 @@ public function getFile(array $options) /** * Deletes the file identified by ID from Backblaze B2. + * @TODO: allow deleting a file via its name and bucket. * * @param array $options * @return bool