castopod/app/Entities/Language.php

20 lines
328 B
PHP

<?php
/**
* @copyright 2020 Podlibre
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
*/
namespace App\Entities;
use CodeIgniter\Entity;
class Language extends Entity
{
protected $casts = [
'code' => 'string',
'native_name' => 'string',
];
}