Skip to content

Commit

Permalink
changed make to create as make is on framework
Browse files Browse the repository at this point in the history
  • Loading branch information
hafijul233 committed Feb 8, 2021
1 parent bc2b76f commit ee8ad61
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions src/Commands/Controller/Create.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Create extends BaseCommand
* The Command's name
* @var string
*/
protected $name = 'make:controller';
protected $name = 'create:controller';

/**
* The Command's short description
Expand All @@ -37,7 +37,7 @@ class Create extends BaseCommand
* The Command's usage
* @var string
*/
protected $usage = 'make:controller [controller_name] [Options]';
protected $usage = 'create:controller [controller_name] [Options]';

/**
* The Command's Arguments
Expand Down
4 changes: 2 additions & 2 deletions src/Commands/MakeConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class MakeConfig extends BaseCommand
* The Command's name
* @var string
*/
protected $name = 'make:config';
protected $name = 'create:config';

/**
* The Command's short description
Expand All @@ -36,7 +36,7 @@ class MakeConfig extends BaseCommand
* The Command's usage
* @var string
*/
protected $usage = 'make:config [config_name] [Options]';
protected $usage = 'create:config [config_name] [Options]';

/**
* The Command's Arguments
Expand Down
4 changes: 2 additions & 2 deletions src/Commands/MakeEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class MakeEntity extends BaseCommand
* The Command's name
* @var string
*/
protected $name = 'make:entity';
protected $name = 'create:entity';

/**
* The Command's short description
Expand All @@ -40,7 +40,7 @@ class MakeEntity extends BaseCommand
* The Command's usage
* @var string
*/
protected $usage = 'make:entity [entity_name] [Options]';
protected $usage = 'create:entity [entity_name] [Options]';

/**
* The Command's Arguments
Expand Down
4 changes: 2 additions & 2 deletions src/Commands/MakeFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class MakeFilter extends BaseCommand
* The Command's name
* @var string
*/
protected $name = 'make:filter';
protected $name = 'create:filter';

/**
* The Command's short description
Expand All @@ -39,7 +39,7 @@ class MakeFilter extends BaseCommand
* The Command's usage
* @var string
*/
protected $usage = 'make:filter [filter_name] [Options]';
protected $usage = 'create:filter [filter_name] [Options]';

/**
* The Command's Arguments
Expand Down
4 changes: 2 additions & 2 deletions src/Commands/MakeMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class MakeMigration extends BaseCommand
* The Command's name
* @var string
*/
protected $name = 'make:migrate';
protected $name = 'create:migrate';

/**
* The Command's short description
Expand All @@ -43,7 +43,7 @@ class MakeMigration extends BaseCommand
* The Command's usage
* @var string
*/
protected $usage = 'make:migrate [migrate_name] [Options]';
protected $usage = 'create:migrate [migrate_name] [Options]';

/**
* The Command's Arguments
Expand Down
4 changes: 2 additions & 2 deletions src/Commands/MakeModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class MakeModel extends BaseCommand
* The Command's name
* @var string
*/
protected $name = 'make:model';
protected $name = 'create:model';

/**
* The Command's short description
Expand All @@ -38,7 +38,7 @@ class MakeModel extends BaseCommand
* The Command's usage
* @var string
*/
protected $usage = 'make:model [model_name] [Options]';
protected $usage = 'create:model [model_name] [Options]';

/**
* The Command's Arguments
Expand Down
4 changes: 2 additions & 2 deletions src/Commands/MakeSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class MakeSeeder extends BaseCommand
* The Command's name
* @var string
*/
protected $name = 'make:seed';
protected $name = 'create:seed';

/**
* The Command's short description
Expand All @@ -38,7 +38,7 @@ class MakeSeeder extends BaseCommand
* The Command's usage
* @var string
*/
protected $usage = 'make:seed [seed_name] [Options]';
protected $usage = 'create:seed [seed_name] [Options]';

/**
* The Command's Arguments
Expand Down

0 comments on commit ee8ad61

Please sign in to comment.