ozimos/LMS_Music

View on GitHub
app/Models/Rating.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

/**
 * Class Rating.
 */
final class Rating extends Model
{
    protected $casts = ['stars' => 'integer'];

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = ['stars', 'content'];
}