mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 16:55:46 +00:00
20 lines
421 B
PHP
20 lines
421 B
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* Class AnalyticsUnknownUseragents
|
||
|
* Entity for AnalyticsUnknownUseragents
|
||
|
* @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 AnalyticsUnknownUseragents extends Entity
|
||
|
{
|
||
|
protected $casts = [
|
||
|
'useragent' => 'integer',
|
||
|
'hits' => 'integer',
|
||
|
];
|
||
|
}
|