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
|
|
|
/**
|
2020-10-06 15:39:27 +00:00
|
|
|
* Class AnalyticsWebsiteByEntryPage
|
|
|
|
* Entity for AnalyticsWebsiteByEntryPage
|
2020-06-12 20:41:09 +00:00
|
|
|
* @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;
|
|
|
|
|
2020-10-06 15:39:27 +00:00
|
|
|
class AnalyticsWebsiteByEntryPage extends Entity
|
2020-06-12 20:41:09 +00:00
|
|
|
{
|
|
|
|
protected $casts = [
|
|
|
|
'podcast_id' => 'integer',
|
2020-10-06 15:39:27 +00:00
|
|
|
'entry_page' => '?string',
|
2020-06-12 20:41:09 +00:00
|
|
|
'date' => 'datetime',
|
|
|
|
'hits' => 'integer',
|
|
|
|
];
|
|
|
|
}
|