Laravel 10.x以降のartisanの「make:command」コマンドを解説します。
Description
新しいArtisanコマンドを作成します。
Usage
php artisan make:command [-f|--force] [--command [COMMAND]] [--test] [--pest] [--] <name>
Arguments
引数 | 必須 | 説明 |
---|---|---|
name | 必須 | コマンドの名前 |
Options
オプション | 省略形 | 必須 | 説明 |
---|---|---|---|
force | f | - | コンソールコマンドが既に存在する場合でも、クラスを作成します。 |
command | - | - | クラスを呼び出すために使用するターミナルコマンド |
test | - | - | Consoleコマンドに付随するPHPUnit テストを生成 |
pest | - | - | Consoleコマンドに付随するPestテストを生成 |
Example
no options
php artisan make:command Foo
INFO Console command [app/Console/Commands/Foo.php] created successfully.
Stub
Option | Stub file name |
---|---|
- | console.stub |
Source
10.x
framework/src/Illuminate/Foundation/Console/ConsoleMakeCommand.php at 11.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
11.x
framework/src/Illuminate/Foundation/Console/ConsoleMakeCommand.php at 11.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
コメント