Refactor docblocks to use @inheritDoc

This commit is contained in:
netkas 2024-09-25 00:41:57 -04:00
parent ff1363c63f
commit 0a8e4f701f

View file

@ -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
{ {