mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-13 07:18:39 +00:00
Add docblock
This commit is contained in:
parent
9aa8a9318c
commit
e6e605f43a
|
|
@ -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
|
public function addReceiving(string $module) : void
|
||||||
{
|
{
|
||||||
|
|
@ -135,7 +141,11 @@ abstract class ModuleAbstract
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* Get modules this module is providing for
|
||||||
|
*
|
||||||
|
* @return array<int, string>
|
||||||
|
*
|
||||||
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
public function getProviding() : array
|
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
|
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
|
public function getDependencies() : array
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user