PHPDoc documentation

This commit is contained in:
PMKuipers 2023-08-27 23:29:46 +02:00
parent 96f311a30b
commit 6bcc44f584
8 changed files with 26 additions and 26 deletions

View File

@ -320,8 +320,8 @@ class studyitem {
global $DB;
foreach ($resequence as $sq) {
// Only change line_id if new line is within the same studyplan page
if ( studyitem::find_by_id($sq['id'])->studyline()->page()->id() ==
// Only change line_id if new line is within the same studyplan page.
if ( self::find_by_id($sq['id'])->studyline()->page()->id() ==
studyline::find_by_id($sq['line_id'])->page()->id() ) {
$DB->update_record(self::TABLE, [
'id' => $sq['id'],

View File

@ -42,7 +42,7 @@ class studyplanpage {
* Holds database record
* @var stdClass
*/
private $r; // Holds database record.
private $r;
/** @var int */
private $id;
/** @var studyplan*/