From 0af5e54ef1338a5f4a8c247ba84910148129bdea Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 3 Apr 2018 16:33:39 +0200 Subject: [PATCH] added hint about naming the class and filename --- src/BaseModule.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/BaseModule.php b/src/BaseModule.php index aad4e6fb01..d0019ccd1c 100644 --- a/src/BaseModule.php +++ b/src/BaseModule.php @@ -6,6 +6,9 @@ namespace Friendica; * All modules in Friendica should extend BaseModule, although not all modules * need to extend all the methods described here * + * The filename of the module in src/Module needs to match the class name + * exactly to make the module available. + * * @author Hypolite Petovan mrpetovan@gmail.com */ abstract class BaseModule extends BaseObject