Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: addOption type corrected
Signed-off-by: yemkareems <yemkareems@gmail.com>
  • Loading branch information
yemkareems committed Jul 30, 2024
commit deb1f22c23b15565d9d3c2e87dba08d789ad7fab
4 changes: 2 additions & 2 deletions apps/files/lib/Command/ListFiles.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ protected function configure(): void {
->addOption("type", "", InputArgument::OPTIONAL, "Filter by type like application, image, video etc")
->addOption(
"minSize",
0,
"0",
InputArgument::OPTIONAL,
"Filter by min size"
)
->addOption(
"maxSize",
0,
"0",
InputArgument::OPTIONAL,
"Filter by max size"
)
Expand Down