mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 20:52:44 +08:00
24 lines
510 B
PHP
24 lines
510 B
PHP
<?php
|
|
|
|
namespace App\Services\Logic\Account;
|
|
|
|
use App\Services\Logic\Service;
|
|
|
|
class OAuthProvider extends Service
|
|
{
|
|
|
|
public function handle()
|
|
{
|
|
$weixin = $this->getSettings('oauth.weixin');
|
|
$weibo = $this->getSettings('oauth.weibo');
|
|
$qq = $this->getSettings('oauth.qq');
|
|
|
|
return [
|
|
'weixin' => ['enabled' => $weixin['enabled']],
|
|
'weibo' => ['enabled' => $weibo['enabled']],
|
|
'qq' => ['enabled' => $qq['enabled']],
|
|
];
|
|
}
|
|
|
|
}
|