mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
28 lines
659 B
PHP
28 lines
659 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace App\Entities;
|
||
|
|
||
|
use CodeIgniter\Entity;
|
||
|
|
||
|
class Podcast extends Entity
|
||
|
{
|
||
|
protected $casts = [
|
||
|
'title' => 'string',
|
||
|
'name' => 'string',
|
||
|
'description' => 'string',
|
||
|
'episode_description_footer' => '?string',
|
||
|
'image' => 'string',
|
||
|
'language' => 'string',
|
||
|
'category' => 'array',
|
||
|
'explicit' => 'boolean',
|
||
|
'author' => '?string',
|
||
|
'owner_name' => '?string',
|
||
|
'owner_email' => '?string',
|
||
|
'type' => '?string',
|
||
|
'copyright' => '?string',
|
||
|
'block' => 'boolean',
|
||
|
'complete' => 'boolean',
|
||
|
'custom_html_head' => '?string',
|
||
|
];
|
||
|
}
|