13 lines
195 B
PHP
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(){
|
|
|
|
}
|
|
}
|