mirror of
https://codeberg.org/vlw/vlw.se.git
synced 2025-09-13 21:13:40 +02:00
The PR is a huge refactor of all Reflect and Vegvisir code. I've merged the API and "Front-end" codebases together into the same root, this will allow for both Reflect and Vegvisir to use the same resources. Not only that, but I've also added proper database modeling with actual OOP inheritance for database tables. Reviewed-on: https://codeberg.org/vlw/vlw.se/pulls/23
14 lines
No EOL
223 B
PHP
14 lines
No EOL
223 B
PHP
<?php
|
|
|
|
namespace VLW\Database\Tables\Battlestation\Config;
|
|
|
|
use vlw\xEnum;
|
|
|
|
enum MbPsuTable: string {
|
|
use xEnum;
|
|
|
|
const NAME = "config_mb_psu";
|
|
|
|
case REF_MB_ID = "ref_mb_id";
|
|
case REF_PSU_ID = "ref_psu_id";
|
|
} |