mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 16:55:46 +00:00
23 lines
523 B
PHP
23 lines
523 B
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* Class AnalyticsEpisodesByCountry
|
||
|
* Entity for AnalyticsEpisodesByCountry
|
||
|
* @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 AnalyticsEpisodesByCountry extends Entity
|
||
|
{
|
||
|
protected $casts = [
|
||
|
'podcast_id' => 'integer',
|
||
|
'episode_id' => 'integer',
|
||
|
'country_code' => 'string',
|
||
|
'date' => 'datetime',
|
||
|
'hits' => 'integer',
|
||
|
];
|
||
|
}
|