mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
wiki
This commit is contained in:
17
ci4/app/Entities/Wiki/WikiFileEntity.php
Normal file
17
ci4/app/Entities/Wiki/WikiFileEntity.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
namespace App\Entities\Wiki;
|
||||
|
||||
use CodeIgniter\Entity\Entity;
|
||||
|
||||
class WikiFileEntity extends Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"content_id" => null,
|
||||
"path" => null,
|
||||
];
|
||||
protected $casts = [
|
||||
"content_id" => "int",
|
||||
"path" => "string",
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user