Refactor docblocks to use @inheritDoc
This commit is contained in:
parent
ff1363c63f
commit
0a8e4f701f
1 changed files with 3 additions and 10 deletions
|
@ -13,10 +13,7 @@ use Socialbox\Interfaces\CliCommandInterface;
|
|||
class InitializeCommand implements CliCommandInterface
|
||||
{
|
||||
/**
|
||||
* Executes the command with the given arguments.
|
||||
*
|
||||
* @param array $args An array of arguments to be processed.
|
||||
* @return int The result of the execution as an integer.
|
||||
* @inheritDoc
|
||||
*/
|
||||
public static function execute(array $args): int
|
||||
{
|
||||
|
@ -61,9 +58,7 @@ class InitializeCommand implements CliCommandInterface
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the help message for the command.
|
||||
*
|
||||
* @return string The help message.
|
||||
* @inheritDoc
|
||||
*/
|
||||
public static function getHelpMessage(): string
|
||||
{
|
||||
|
@ -74,9 +69,7 @@ class InitializeCommand implements CliCommandInterface
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns a short help message for the command.
|
||||
*
|
||||
* @return string
|
||||
* @inheritDoc
|
||||
*/
|
||||
public static function getShortHelpMessage(): string
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue