从 CLI 查看 Laravel Artisan 命令签名
View Laravel Artisan Command Signature from CLI
我有一个带有签名的自定义 artisan 命令:
protected $signature = 'user:update
{changedFrom : Timestamp to update users from - "yyyy-mm-dd hh:mm:ss"}
{--extras : Whether to update fringe case "extra" users}';
我总是忘记选项及其格式。我希望我能够在 CLI 中查看它们,但我能做的最好的事情就是用 php artisan
列出命令的描述。
有没有artisan命令看签名?
在命令中添加 --help
应该会输出可用的选项。
php artisan user:update --help
我有一个带有签名的自定义 artisan 命令:
protected $signature = 'user:update
{changedFrom : Timestamp to update users from - "yyyy-mm-dd hh:mm:ss"}
{--extras : Whether to update fringe case "extra" users}';
我总是忘记选项及其格式。我希望我能够在 CLI 中查看它们,但我能做的最好的事情就是用 php artisan
列出命令的描述。
有没有artisan命令看签名?
在命令中添加 --help
应该会输出可用的选项。
php artisan user:update --help