mirror of
https://code.castopod.org/adaures/castopod
synced 2025-09-06 19:59:27 +00:00
15 lines
234 B
PHP
15 lines
234 B
PHP
<?php
|
|
|
|
namespace App\Entities;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class Category extends Entity
|
|
{
|
|
protected $casts = [
|
|
'parent_id' => 'integer',
|
|
'apple_category' => 'string',
|
|
'google_category' => 'string',
|
|
];
|
|
}
|