Fix Laravel Pint formatting

This commit is contained in:
root
2026-06-08 23:30:22 -04:00
parent 567dc24649
commit c792b8be05
1288 changed files with 10766 additions and 9669 deletions
+4 -6
View File
@@ -2,8 +2,6 @@
namespace App\Models;
use App\Models\BaseModel;
class CompetitionScore extends BaseModel
{
protected $table = 'competition_scores';
@@ -20,10 +18,10 @@ class CompetitionScore extends BaseModel
];
protected $casts = [
'competition_id' => 'integer',
'student_id' => 'integer',
'competition_id' => 'integer',
'student_id' => 'integer',
'class_section_id' => 'integer',
'score' => 'integer', // change to 'decimal:2' if score is not int
'score' => 'integer', // change to 'decimal:2' if score is not int
];
/* Optional relationships */
@@ -41,4 +39,4 @@ class CompetitionScore extends BaseModel
{
return $this->belongsTo(ClassSection::class, 'class_section_id');
}
}
}