Skip to content

Commit

Permalink
update file
Browse files Browse the repository at this point in the history
  • Loading branch information
juancristobalgd1 authored Mar 29, 2024
1 parent 2c9fdad commit a175dad
Showing 1 changed file with 6 additions and 20 deletions.
26 changes: 6 additions & 20 deletions app/commands/HelloCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,50 +9,36 @@ class HelloCommand extends BaseCommand
{
/**
* The Command's Group
*
* @var string
*/
protected $group = 'App';
protected string $group = 'App';

/**
* The Command's Name
*
* @var string
*/
protected $name = 'hello';
protected string $name = 'hello';

/**
* The Command's Description
*
* @var string
*/
protected $description = 'Displays a "hello world!" on console';
protected string $description = 'Displays a "hello world!" on console';

/**
* The Command's Usage
*
* @var string
*/
protected $usage = 'hello [options]';
protected string $usage = 'hello [options]';

/**
* The Command's Arguments
*
* @var array
*/
protected $arguments = [];
protected array $arguments = [];

/**
* The Command's Options
*
* @var array
*/
protected $options = [];
protected array $options = [];

/**
* Actually execute a command.
*
* @param array $params
*/
public function run(array $params)
{
Expand Down

0 comments on commit a175dad

Please sign in to comment.