Skip to content
Snippets Groups Projects
Clip.php 965 B
Newer Older
  • Learn to ignore specific revisions
  • /**
     * @copyright  2020 Podlibre
     * @license    https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
     * @link       https://castopod.org/
     */
    
    namespace App\Entities;
    
    
    /**
     * @property int $id
     * @property int $podcast_id
     * @property int $episode_id
     * @property double $start_time
     * @property double $duration
     * @property string|null $label
     * @property int $created_by
     * @property int $updated_by
     */
    
        protected $casts = [
            'id' => 'integer',
            'podcast_id' => 'integer',
            'episode_id' => 'integer',
    
            'start_time' => 'double',
            'duration' => 'double',
    
            'media_id' => 'integer',
            'status' => 'string',
            'logs' => 'string',
    
            'created_by' => 'integer',
            'updated_by' => 'integer',
        ];
    }