Initial import
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user