2020-06-12 20:41:09 +00:00
|
|
|
<?php
|
2020-08-04 11:25:22 +00:00
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
/**
|
|
|
|
* Class AnalyticsPodcastsByPlayer
|
|
|
|
* Entity for AnalyticsPodcastsByPlayer
|
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
2020-08-04 11:25:22 +00:00
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
namespace App\Entities;
|
|
|
|
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
|
|
|
|
class AnalyticsPodcastsByPlayer extends Entity
|
|
|
|
{
|
|
|
|
protected $casts = [
|
|
|
|
'podcast_id' => 'integer',
|
2020-10-06 15:39:27 +00:00
|
|
|
'app' => '?string',
|
|
|
|
'device' => '?string',
|
|
|
|
'os' => '?string',
|
|
|
|
'bot' => 'boolean',
|
2020-06-12 20:41:09 +00:00
|
|
|
'date' => 'datetime',
|
|
|
|
'hits' => 'integer',
|
|
|
|
];
|
|
|
|
}
|