aboutsummaryrefslogtreecommitdiff
path: root/lib/models/ModuleManagementModel.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2022-06-30 08:16:44 +0000
committerDavid Siegfried <david.siegfried@uni-vechta.de>2022-06-30 08:16:44 +0000
commiteccec27f081020f42f20508b88ad420c0f489907 (patch)
tree038d598ada4f561cd65cf18f4688ce299a940a80 /lib/models/ModuleManagementModel.php
parent3cfe3110dc44352a1a91a8fa00ab9a2b35a73306 (diff)
fix errors in mvv models, fixes #1230
Closes #1230 Merge request studip/studip!741
Diffstat (limited to 'lib/models/ModuleManagementModel.php')
-rw-r--r--lib/models/ModuleManagementModel.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/models/ModuleManagementModel.php b/lib/models/ModuleManagementModel.php
index f9d7064..db565b9 100644
--- a/lib/models/ModuleManagementModel.php
+++ b/lib/models/ModuleManagementModel.php
@@ -16,7 +16,7 @@
require_once 'config/mvv_config.php';
-abstract class ModuleManagementModel extends SimpleORMap
+abstract class ModuleManagementModel extends SimpleORMap implements ModuleManagementInterface
{
/**
* Usable as option for ModuleManagementModel::getDisplayName().
@@ -133,7 +133,7 @@ abstract class ModuleManagementModel extends SimpleORMap
/**
* Returns an object by given id with all relations and additional fields.
*
- * @param tring $id The id of the object.
+ * @param string $id The id of the object.
* @return ModuleManagementModel
*/
public static function getEnriched($id)
@@ -493,7 +493,7 @@ abstract class ModuleManagementModel extends SimpleORMap
* @param array $params Array with the parameters used in query
* @param int $row_count Number of rows to return
* @param int $offset Offset where the result set starts
- * @return object SimpleOrMapCollection with all found objects or empty array
+ * @return SimpleOrMapCollection with all found objects or empty array
*/
public static function getEnrichedByQuery($query = null, $params = [],
$row_count = null, $offset = null)