Files
Admin Nasledstvo ac168868ee Initial import
2026-05-01 20:52:04 +03:00

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);
}
}