diff options
author | Daniel Weipert <code@drogueronin.de> | 2021-04-18 21:46:12 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2021-04-18 21:46:12 +0200 |
commit | 82e4d1ca348748e8cdde86f65e62221968cabed5 (patch) | |
tree | 778e3be9a9b3fa8cfb6cda1a34230fdf402da997 /src/Module/ModuleInterface.php | |
parent | c0ebe78089121c0ad23efb0af32c435bee543a3c (diff) |
Slight refactoring
Diffstat (limited to 'src/Module/ModuleInterface.php')
-rw-r--r-- | src/Module/ModuleInterface.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Module/ModuleInterface.php b/src/Module/ModuleInterface.php index 2963b5f..649a095 100644 --- a/src/Module/ModuleInterface.php +++ b/src/Module/ModuleInterface.php @@ -4,7 +4,13 @@ namespace PHPIAC\Module; interface ModuleInterface { + /** + * @return bool + */ public function checkState(): bool; + /** + * @return array + */ public function getCommands(): array; } |