mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
20 lines
299 B
PHP
20 lines
299 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @since 2017/03/02 创建
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
|
|
namespace Home\Api;
|
|
|
|
|
|
class Base {
|
|
|
|
protected $city;
|
|
protected $userInfo;
|
|
|
|
public function __construct() {
|
|
$this->city = C('CITY');
|
|
$this->userInfo = C('USER_INFO');
|
|
}
|
|
} |