Skip to content
Snippets Groups Projects
AnalyticsPodcasts.php 929 B
Newer Older
  • Learn to ignore specific revisions
  •  * Class AnalyticsPodcasts Entity for AnalyticsPodcasts
     *
    
     * @copyright  2020 Podlibre
     * @license    https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
     * @link       https://castopod.org/
     */
    
    /**
     * @property int $podcast_id
     * @property Time $date
    
     * @property int $bandwidth
     * @property int $unique_listeners
     * @property int $hits
     * @property Time $created_at
     * @property Time $updated_at
     */
    
    class AnalyticsPodcasts extends Entity
    
        /**
         * @var string[]
         */
        protected $dates = ['date', 'created_at', 'updated_at'];
    
    
        protected $casts = [
            'podcast_id' => 'integer',
    
            'unique_listeners' => 'integer',