28 lines
454 B
Plaintext
28 lines
454 B
Plaintext
<?php
|
|
declare (strict_types = 1);
|
|
|
|
namespace {%namespace%};
|
|
|
|
class {%className%} extends \ywxapp\controller\AddonFrontend
|
|
{
|
|
/**
|
|
* Summary of needLogin
|
|
* @var array
|
|
*/
|
|
protected $noNeedLogin = ['*'];
|
|
|
|
/**
|
|
* Summary of needRight
|
|
* @var array
|
|
*/
|
|
protected $noNeedVerify = ['*'];
|
|
|
|
/**
|
|
* 控制器初始化 _initialize
|
|
* @return void
|
|
*/
|
|
protected function initialize()
|
|
{}
|
|
|
|
//
|
|
} |