feat: 서버 제어용 변수 공간 추가

This commit is contained in:
2023-06-11 21:40:07 +09:00
parent af2dec7e2c
commit 5596eca326
2 changed files with 21 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace sammo;
/** 서버 내 변수 모음 */
class ServerDefaultEnv
{
//TODO: 이 값이 .env든 d_setting의 기타 변수이든, 수정 가능해야함
private function __construct()
{
}
static int $maxGeneralsPerMinute = 1000;
}
+6
View File
@@ -0,0 +1,6 @@
<?php
namespace sammo;
class ServerEnv extends ServerDefaultEnv {
//TODO: 이 값이 .env든 d_setting의 기타 변수이든, 수정 가능해야함
}