mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-12 17:25:45 +00:00
22 lines
486 B
PHP
22 lines
486 B
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* Class class AnalyticsWebsiteByReferer
|
||
|
* Entity for AnalyticsWebsiteByReferer
|
||
|
* @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 AnalyticsWebsiteByReferer extends Entity
|
||
|
{
|
||
|
protected $casts = [
|
||
|
'podcast_id' => 'integer',
|
||
|
'referer' => 'string',
|
||
|
'date' => 'datetime',
|
||
|
'hits' => 'integer',
|
||
|
];
|
||
|
}
|