Skip to content
Snippets Groups Projects
AnalyticsUnknownUseragents.php 423 B
Newer Older
  • Learn to ignore specific revisions
  • /**
     * 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',
        ];
    }