22 lines
558 B
PHP
Executable File
22 lines
558 B
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 宏驰云科技开发团队 版权所有 拥有最终解释权
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: HcyShop-kiki
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
namespace app\api\controller;
|
|
|
|
|
|
class Dispatch extends ApiBase
|
|
{
|
|
public $like_not_need_login = ['_error'];
|
|
|
|
public function dispatch_error($msg = '', $code = 0)
|
|
{
|
|
return $this->_error($msg, [], $code);
|
|
}
|
|
|
|
} |