feat: VersionGit hash 추가. dynamic추가. 버전 변수 방식 변경

This commit is contained in:
2021-08-25 02:12:35 +09:00
parent b987fce627
commit fa109c1b0b
4 changed files with 25 additions and 32 deletions
+8 -2
View File
@@ -2,8 +2,14 @@
namespace sammo;
class VersionGit{
public static $version = '_tK_verionGit_';
public static $hash = '_tK_hash_';
static function getVersion()
{
return '_tK_verionGit_';
}
static function getHash(){
return '_tK_hash_';
}
private function __construct(){}
}