Files
datahub/backend/app/Model/Platform.php
T
2025-11-26 13:41:15 +08:00

30 lines
538 B
PHP

<?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 = [];
}