mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
19 lines
276 B
PHP
Executable File
19 lines
276 B
PHP
Executable File
<?php
|
|
namespace App\Entities\Wiki;
|
|
|
|
use App\Models\Usuarios\UserModel;
|
|
use CodeIgniter\Entity\Entity;
|
|
|
|
class WikiPageEntity extends Entity
|
|
{
|
|
protected $attributes = [
|
|
"section_id" => null,
|
|
];
|
|
protected $casts = [
|
|
"section_id" => "int",
|
|
];
|
|
|
|
|
|
|
|
}
|