mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
22 lines
430 B
PHP
22 lines
430 B
PHP
<?php
|
|
namespace App\Entities\Wiki;
|
|
|
|
use CodeIgniter\Entity\Entity;
|
|
|
|
class WikiContentEntity extends Entity
|
|
{
|
|
protected $attributes = [
|
|
"locale" => null,
|
|
"page_id" => null,
|
|
"editor_data" => null,
|
|
"published_data" => null,
|
|
];
|
|
protected $casts = [
|
|
"locale" => "string",
|
|
"page_id" => "int",
|
|
"editor_data" => "string",
|
|
"published_data" => "string",
|
|
];
|
|
|
|
}
|