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
|
class InitializeCommand implements CliCommandInterface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Executes the command with the given arguments.
|
* @inheritDoc
|
||||||
*
|
|
||||||
* @param array $args An array of arguments to be processed.
|
|
||||||
* @return int The result of the execution as an integer.
|
|
||||||
*/
|
*/
|
||||||
public static function execute(array $args): int
|
public static function execute(array $args): int
|
||||||
{
|
{
|
||||||
|
@ -61,9 +58,7 @@ class InitializeCommand implements CliCommandInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the help message for the command.
|
* @inheritDoc
|
||||||
*
|
|
||||||
* @return string The help message.
|
|
||||||
*/
|
*/
|
||||||
public static function getHelpMessage(): string
|
public static function getHelpMessage(): string
|
||||||
{
|
{
|
||||||
|
@ -74,9 +69,7 @@ class InitializeCommand implements CliCommandInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a short help message for the command.
|
* @inheritDoc
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
*/
|
||||||
public static function getShortHelpMessage(): string
|
public static function getShortHelpMessage(): string
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue