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
+4 -4
View File
@@ -58,13 +58,13 @@ class Section extends BaseModel
}
/* ============================================================
* CI-compatible methods
* legacy-compatible methods
* ============================================================
*/
/**
* Get section by name.
* CI: getSectionByName()
* legacy: getSectionByName()
*/
public static function getSectionByName(string $sectionName): ?self
{
@@ -73,7 +73,7 @@ class Section extends BaseModel
/**
* Update section details by ID.
* CI: updateSection() (Laravel automatically updates updated_at)
* legacy: updateSection() (Laravel automatically updates updated_at)
*/
public static function updateSection(int $sectionId, array $data): bool
{
@@ -86,7 +86,7 @@ class Section extends BaseModel
/**
* Delete section by ID.
* CI: deleteSection()
* legacy: deleteSection()
*/
public static function deleteSection(int $sectionId): bool
{