update
This commit is contained in:
@@ -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 = [];
|
||||
}
|
||||
Reference in New Issue
Block a user