21 lines
372 B
PHP
21 lines
372 B
PHP
<?php
|
|
namespace app\services\openid;
|
|
|
|
class IdServer extends IdServerBase
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->auth();
|
|
}
|
|
|
|
public function customGetRequest($req)
|
|
{
|
|
return $this->secureGetRequest($req);
|
|
}
|
|
|
|
public function customPostRequest($req, $data = [])
|
|
{
|
|
return $this->securePostRequest($req, $data);
|
|
}
|
|
}
|