Skip to content
Snippets Groups Projects
AnalyticsWebsiteByCountry.php 485 B
Newer Older
  • Learn to ignore specific revisions
  • <?php
    /**
     * Class AnalyticsWebsiteByCountry
     * Entity for AnalyticsWebsiteByCountry
     * @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 AnalyticsWebsiteByCountry extends Entity
    {
        protected $casts = [
            'podcast_id' => 'integer',
            'country_code' => 'string',
            'date' => 'datetime',
            'hits' => 'integer',
        ];
    }