for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PHP version 5.4 and 8
*
* @category Authorization
* @package Payever\Core
* @author payever GmbH <[email protected]>
* @author Hennadii.Shymanskyi <[email protected]>
* @copyright 2017-2021 payever GmbH
* @license MIT <https://opensource.org/licenses/MIT>
* @link https://docs.payever.org/shopsystems/api/getting-started
*/
namespace Payever\ExternalIntegration\Core\Authorization;
* Default storage of Oauth tokens if none explicitly provided.
* Tokens are retrieved & stored in memory for each request.
* NOTE: It is strongly recommended to implement your own persistent tokens storage.
class DummyOauthTokenList extends OauthTokenList
{
* @inheritdoc
public function load()
return $this;
}
public function save()