remove codeigniter

This commit is contained in:
root
2026-06-04 02:41:08 -04:00
parent 4e33882ac7
commit b4e6ac03c5
180 changed files with 457 additions and 2186 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ class FinalExam extends BaseModel
protected $table = 'final_exam';
/**
* CI: useTimestamps = false (even though table has created_at/updated_at fields).
* legacy: useTimestamps = false (even though table has created_at/updated_at fields).
* So we keep timestamps OFF and you can set created_at/updated_at manually if needed.
*/
public $timestamps = false;
@@ -52,7 +52,7 @@ class FinalExam extends BaseModel
}
/**
* Equivalent of CI getFinalExamScore()
* Equivalent of legacy getFinalExamScore()
*/
public static function getFinalExamScore(
int $studentId,