관리-도구
편집 파일: Authenticator.php.tar
home/tattooscyy/www/app/Libs/Sdk/Authentication/Authenticator.php 0000644 00000001035 15224717122 0021240 0 ustar 00 <?php namespace App\Libs\Sdk\Authentication; /** * Class Authenticator * * @package OnlinePayments\Sdk\Authentication */ interface Authenticator { /** * Returns properly formated authentication header(s). * * * @param string $httpMethod * @param string $uriPath * @param array<string, string> $requestHeaders * * @return string The full value for the Authorization header */ public function getAuthorization(string $httpMethod, string $uriPath, array $requestHeaders = []): string; }