Skip to content
Open
Changes from all commits
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
5 changes: 5 additions & 0 deletions docs/hyn/5.4/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,14 @@ How it works:
- The `--tenant` option accepts either a single website id or a comma separated list of website ids.
- If your target command requires options or arguments, you can add them like this:

To use arguments and options with values
```bash
$ php artisan tenancy:run <command> --option="key=value" --option="live=1" --argument="key=value"
```
To use options without values i.e. --force you need to include = with empty value
```bash
$ php artisan tenancy:run <command> --option="force="
```
> Make sure you include the argument or option key!

Example:
Expand Down