You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
346 B
23 lines
346 B
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace longbingcore\diy;
|
|
|
|
use app\BaseControllerV2;
|
|
use think\Request;
|
|
|
|
/**
|
|
* @author shuixian
|
|
* @DataTime: 2019/12/11 17:04
|
|
* Class BaseSubscribe
|
|
* @package longbingcore\diy
|
|
*/
|
|
class BaseSubscribe
|
|
{
|
|
public function __construct(Request $request)
|
|
{
|
|
// parent::__construct($request);
|
|
}
|
|
|
|
} |