feat: documentation for console arguments - #132
Merged
Conversation
hwbrzzl
reviewed
Sep 26, 2025
hwbrzzl
left a comment
Contributor
There was a problem hiding this comment.
Thanks, could you modify the base branch to v1.17.x?
|
|
||
| Supported agrument types : `ArgumentFloat32`, `ArgumentFloat64`, `ArgumentInt`, `ArgumentInt8`, `ArgumentInt16`, `ArgumentInt32`, `ArgumentInt64`, `ArgumentString`, `ArgumentUint`, `ArgumentUint8`, `ArgumentUint16`, `ArgumentUint32`, `ArgumentUint64`, `ArgumentTimestamp`, `ArgumentFloat32Slice`, `ArgumentFloat64Slice`, `ArgumentIntSlice`, `ArgumentInt8Slice`, `ArgumentInt16Slice`, `ArgumentInt32Slice`, `ArgumentInt64Slice`, `ArgumentStringSlice`, `ArgumentUintSlice`, `ArgumentUint8Slice`, `ArgumentUint16Slice`, `ArgumentUint32Slice`, `ArgumentUint64Slice`, `ArgumentTimestampSlice` | ||
|
|
||
| Argument types with single value support next fields: |
Contributor
There was a problem hiding this comment.
Suggested change
| Argument types with single value support next fields: | |
| Argument types with single value support next fields: | |
| Usage string // the usage text to show | ||
| Required bool // if this argument is required | ||
| ``` | ||
| Slice argument types fields: |
Contributor
There was a problem hiding this comment.
Suggested change
| Slice argument types fields: | |
| Slice argument types fields: | |
| Min int // the min num of occurrences of this argument | ||
| Max int // the max num of occurrences of this argument, set to -1 for unlimited | ||
| ``` | ||
| Timestamp arguments additionally supports `Layouts []string` field, that should be filled with [supported layouts](https://pkg.go.dev/time#pkg-constants) |
Contributor
There was a problem hiding this comment.
Suggested change
| Timestamp arguments additionally supports `Layouts []string` field, that should be filled with [supported layouts](https://pkg.go.dev/time#pkg-constants) | |
| Timestamp arguments additionally supports `Layouts []string` field, that should be filled with [supported layouts](https://pkg.go.dev/time#pkg-constants) |
oprudkyi
force-pushed
the
issue/cli_arguments
branch
from
September 30, 2025 03:32
6e252bd to
616a8c9
Compare
oprudkyi
force-pushed
the
issue/cli_arguments
branch
from
September 30, 2025 03:35
616a8c9 to
3a1e657
Compare
Contributor
Author
|
Hi @hwbrzzl |
hwbrzzl
pushed a commit
that referenced
this pull request
Jan 16, 2026
* feat: documentation for console arguments * fix: text formatting
hwbrzzl
added a commit
that referenced
this pull request
Jan 31, 2026
* optimize mockery * add divider and colored outputs (#137) * Add MongoDB package (#140) * add mongodb package * Update packages.md with test coverage note Added a note about test coverage ordering and corrected a missing asterisk in the table header. * Enhance package.md with discoverability tips via GitHub Topic (#141) * Enhance package.md with discoverability tips Added tips for improving package discoverability in the documentation. * Add goravel topic * Enhance topic addition instructions in packages.md Updated instructions for adding topics to a repository for better discoverability. * Clean up blank lines in packages.md Removed extra blank lines in the packages documentation. * feat: documentation for console arguments (#132) * feat: documentation for console arguments * fix: text formatting * feat: [#559] Feature Comparison Table with Laravel * optimize * add introduction to process facade * add docs for process Pipelining * add warning in process Pipeline configuration * add doc for async processes * add doc for concurrent processes * add docs for pluralization * add pluralization supported languages * optimize mockery * add divider and colored outputs (#137) * Add MongoDB package (#140) * add mongodb package * Update packages.md with test coverage note Added a note about test coverage ordering and corrected a missing asterisk in the table header. * Enhance package.md with discoverability tips via GitHub Topic (#141) * Enhance package.md with discoverability tips Added tips for improving package discoverability in the documentation. * Add goravel topic * Enhance topic addition instructions in packages.md Updated instructions for adding topics to a repository for better discoverability. * Clean up blank lines in packages.md Removed extra blank lines in the packages documentation. * feat: documentation for console arguments (#132) * feat: documentation for console arguments * fix: text formatting * feat: [#559] Feature Comparison Table with Laravel * optimize * add introduction to process facade * add docs for process Pipelining * add warning in process Pipeline configuration * add doc for async processes * add doc for concurrent processes * add docs for pluralization * add pluralization supported languages * mail template * optimize * add some features * optimize * optimize * optimize * optimize * optimize * optimize * remove telemetry facade documentation * optimise pluralization example * add documentation for http client testing * fix view.md * optimize * optimize TODO * add navigate * add versions * add versions * optimize home page * optimize code * add new providers * optimize grpc --------- Co-authored-by: zoryamba <zoryamba@gmail.com> Co-authored-by: toni dy <tonidy@users.noreply.github.com> Co-authored-by: Oleksii Prudkyi <oprudkyi@users.noreply.github.com> Co-authored-by: krishan kumar <84431594+kkumar-gcc@users.noreply.github.com> Co-authored-by: kkumar-gcc <krishkumar9352@gmail.com> Co-authored-by: krishan kumar <84431594+krishankumar01@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📑 Description
documentation for console arguments goravel/framework#1199