Socket/app/handle/controller/Common.php
2026-01-28 23:48:20 +08:00

13 lines
195 B
PHP

<?php
declare (strict_types = 1);
namespace app\handle\controller;
class Common {
protected $middleware = [\app\middleware\checkLogin::class];
public function initialize(){
}
}