Delete newShop.php

This commit is contained in:
aozhiwei 2021-09-09 15:47:12 +08:00
parent 52a92d5631
commit 4531ee3118

View File

@ -1,24 +0,0 @@
<?php
namespace mt;
use phpcommon;
class newShop {
public static function get($equipId)
{
return self::getMeta()[$equipId];
}
protected static function getMeta()
{
if (!self::$meta) {
self::$meta = getMetaTable('newshop@newshop.php');
}
return self::$meta;
}
protected static $meta;
}