aboutsummaryrefslogtreecommitdiff
path: root/lib/models/SemesterCourse.class.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/SemesterCourse.class.php
parentfe64b827e2e503085c6f596eeed08d6ece36624b (diff)
fixes #3225
Closes #3225 Merge request studip/studip!2186
Diffstat (limited to 'lib/models/SemesterCourse.class.php')
-rw-r--r--lib/models/SemesterCourse.class.php16
1 files changed, 7 insertions, 9 deletions
diff --git a/lib/models/SemesterCourse.class.php b/lib/models/SemesterCourse.class.php
index 0fc6af3..04590e3 100644
--- a/lib/models/SemesterCourse.class.php
+++ b/lib/models/SemesterCourse.class.php
@@ -16,15 +16,13 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
* @category Stud.IP
*
- * @property string semester_id The ID of a semester.
- * @property string course_id The ID of a course.
- * @property string mkdate The database entry's creation date.
- * @property string chdate The database entry's last modification date.
- *
- * @property Semester $semester
- * @property Course $course
- *
- * The combination of semester_id and course_id form the primary key.
+ * @property array $id alias for pk
+ * @property string $semester_id database column
+ * @property string $course_id database column
+ * @property int $mkdate database column
+ * @property int $chdate database column
+ * @property Semester $semester belongs_to Semester
+ * @property Course $course belongs_to Course
*/
class SemesterCourse extends SimpleORMap
{