1234567891011121314151617181920212223 |
- <?php
- /**
- * CommonConst.php UTF-8
- * 公共常量
- *
- * @date : 2020/9/14 15:11
- *
- * @license 这不是一个自由软件,未经授权不许任何使用和传播。
- * @author : chenbingling <cbl@huosdk.com>
- * @version : H5IOS 1.0
- */
- namespace huosdk\h5ios\core\constant;
- class CommonConst extends \huolib\constant\CommonConst {
- /**
- * 获取包根目录
- *
- * @return string
- */
- public static function getRootDir() {
- return dirname(__DIR__);
- }
- }
|