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
+3 -3
View File
@@ -8,7 +8,7 @@ class GradingLock extends BaseModel
{
protected $table = 'grading_locks';
// ✅ CI: useTimestamps = true
// ✅ legacy: useTimestamps = true
public $timestamps = true;
protected $fillable = [
@@ -41,7 +41,7 @@ class GradingLock extends BaseModel
}
/**
* Equivalent of CI getLock()
* Equivalent of legacy getLock()
*/
public static function getLock(int $classSectionId, string $semester, string $schoolYear): ?self
{
@@ -58,7 +58,7 @@ class GradingLock extends BaseModel
}
/**
* Equivalent of CI isLocked()
* Equivalent of legacy isLocked()
*/
public static function isLocked(int $classSectionId, string $semester, string $schoolYear): bool
{