mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +00:00
27 lines
574 B
PHP
27 lines
574 B
PHP
<?php
|
|
|
|
/**
|
|
* Class AnalyticsPodcastsByPlayer
|
|
* Entity for AnalyticsPodcastsByPlayer
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace Analytics\Entities;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class AnalyticsPodcastsByPlayer extends Entity
|
|
{
|
|
protected $casts = [
|
|
'podcast_id' => 'integer',
|
|
'app' => '?string',
|
|
'device' => '?string',
|
|
'os' => '?string',
|
|
'is_bot' => 'boolean',
|
|
'date' => 'datetime',
|
|
'hits' => 'integer',
|
|
];
|
|
}
|