优化 auth 单例获取用户,支持 guard 获取

This commit is contained in:
JaguarJack
2020-05-23 14:04:23 +08:00
parent fa04341608
commit 8bf7380d82
4 changed files with 26 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace catcher\library\excel;
interface Excel
{
public function title(): string;
public function headers(): array;
public function sheets(): array;
public function filename():string;
}