mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +00:00
24 lines
501 B
PHP
24 lines
501 B
PHP
<?php
|
|
|
|
/**
|
|
* Class AnalyticsWebsiteByEntryPage
|
|
* Entity for AnalyticsWebsiteByEntryPage
|
|
* @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 AnalyticsWebsiteByEntryPage extends Entity
|
|
{
|
|
protected $casts = [
|
|
'podcast_id' => 'integer',
|
|
'entry_page_url' => 'string',
|
|
'date' => 'datetime',
|
|
'hits' => 'integer',
|
|
];
|
|
}
|