From e6e605f43a745fd4b7b62995192ff78b303bd214 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 1 Jun 2018 09:36:01 +0200 Subject: [PATCH] Add docblock --- Module/ModuleAbstract.php | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/Module/ModuleAbstract.php b/Module/ModuleAbstract.php index ec362bcc4..70a777e40 100644 --- a/Module/ModuleAbstract.php +++ b/Module/ModuleAbstract.php @@ -127,7 +127,13 @@ abstract class ModuleAbstract } /** - * {@inheritdoc} + * Add modules this module receives from + * + * @param string $module Module name + * + * @return void + * + * @since 1.0.0 */ public function addReceiving(string $module) : void { @@ -135,7 +141,11 @@ abstract class ModuleAbstract } /** - * {@inheritdoc} + * Get modules this module is providing for + * + * @return array + * + * @since 1.0.0 */ public function getProviding() : array { @@ -144,7 +154,11 @@ abstract class ModuleAbstract } /** - * {@inheritdoc} + * Get the name of the module + * + * @return string + * + * @since 1.0.0 */ public function getName() : string { @@ -153,7 +167,11 @@ abstract class ModuleAbstract } /** - * {@inheritdoc} + * Get module dependencies + * + * @return array + * + * @since 1.0.0 */ public function getDependencies() : array {