"rawcontent" is now a baseobject method

This commit is contained in:
Michael 2018-09-30 20:47:28 +00:00
parent 0769a115aa
commit fdc396e197
2 changed files with 10 additions and 1 deletions

View file

@ -21,7 +21,16 @@ abstract class BaseModule extends BaseObject
*/
public static function init()
{
}
/**
* @brief Module GET method to display raw content from technical endpoints
*
* Extend this method if the module is supposed to return communication data,
* e.g. from protocol implementations.
*/
public static function rawContent()
{
}
/**