aboutsummaryrefslogtreecommitdiff
path: root/lib/models/Deputy.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2023-10-02 09:26:54 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2023-10-02 09:26:54 +0000
commiteb19fa6a076a8d211cd483afb01eeda6172d27e4 (patch)
tree3eb6355b6918ceb0e2c9978cb5d98cb9f4458640 /lib/models/Deputy.php
parentfe64b827e2e503085c6f596eeed08d6ece36624b (diff)
fixes #3225
Closes #3225 Merge request studip/studip!2186
Diffstat (limited to 'lib/models/Deputy.php')
-rw-r--r--lib/models/Deputy.php28
1 files changed, 20 insertions, 8 deletions
diff --git a/lib/models/Deputy.php b/lib/models/Deputy.php
index eef56d4..f433e22 100644
--- a/lib/models/Deputy.php
+++ b/lib/models/Deputy.php
@@ -13,14 +13,26 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
* @category Stud.IP
*
- * @property string range_id database column
- * @property string user_id database column
- * @property string gruppe database column
- * @property string notification database column
- * @property string edit_about database column
- * @property User deputy belongs_to User
- * @property Course course belongs_to Course
- * @property User boss has_one User
+ * @property array $id alias for pk
+ * @property string $range_id database column
+ * @property string $user_id database column
+ * @property int $gruppe database column
+ * @property int $notification database column
+ * @property int $edit_about database column
+ * @property int|null $mkdate database column
+ * @property int|null $chdate database column
+ * @property User $deputy belongs_to User
+ * @property Course $course belongs_to Course
+ * @property User $boss belongs_to User
+ * @property mixed $vorname additional field
+ * @property mixed $nachname additional field
+ * @property mixed $username additional field
+ * @property mixed $perms additional field
+ * @property mixed $boss_vorname additional field
+ * @property mixed $boss_nachname additional field
+ * @property mixed $boss_username additional field
+ * @property mixed $course_name additional field
+ * @property mixed $course_number additional field
*/
class Deputy extends SimpleORMap
{