This commit is contained in:
2025-11-26 13:41:15 +08:00
parent a1ed0f2ecc
commit 24efeb25a0
4 changed files with 149 additions and 1 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
declare(strict_types=1);
namespace App\Model;
/**
* @mixin \App_Model_Platform
*/
class Platform extends Model
{
/**
* The table associated with the model.
*
* @TODO check if we realy need the platform table, or consider use a virtual model
*/
# protected ?string $table = 'Platform';
/**
* The attributes that are mass assignable.
*/
protected array $fillable = [];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = [];
}