mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-13 11:52:51 +00:00
22 lines
314 B
PHP
22 lines
314 B
PHP
<?php
|
|
/**
|
|
* Created by CRMEB.
|
|
* User: 136327134@qq.com
|
|
* Date: 2019/4/11 9:47
|
|
*/
|
|
|
|
namespace app\core\logic\routine;
|
|
|
|
use app\core\implement\ProviderInterface;
|
|
|
|
class RoutineLogin implements ProviderInterface
|
|
{
|
|
public function register($config)
|
|
{
|
|
return ['routine_login',new self()];
|
|
}
|
|
|
|
|
|
|
|
|
|
} |