Files
torebki-fabiola.pl/wp-content/plugins/post-smtp/Postman/Postman-Auth/PostmanNonOAuthAuthenticationManager.php
2026-03-05 13:07:40 +01:00

47 lines
1.1 KiB
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if (! class_exists ( "PostmanNonOAuthAuthenticationManager" )) {
require_once 'PostmanAuthenticationManager.php';
class PostmanNonOAuthAuthenticationManager implements PostmanAuthenticationManager {
/**
*/
public function isAccessTokenExpired() {
return false;
}
/**
* (non-PHPdoc)
*
* @see PostmanAuthenticationManager::requestVerificationCode()
*/
public function requestVerificationCode($transactionId) {
// otherwise known as IllegaStateException
assert ( false );
}
public function processAuthorizationGrantCode($transactionId) {
// otherwise known as IllegaStateException
assert ( false );
}
public function refreshToken() {
// no-op
}
public function getAuthorizationUrl() {
return null;
}
public function getTokenUrl() {
return null;
}
public function getCallbackUri() {
return null;
}
public function generateRequestTransactionId() {
// otherwise known as IllegaStateException
assert ( false );
}
}
}