for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Korobovn\CloudPayments\Message\Request;
/**
* @method static TokenPaymentTwoStepRequest create()
*
* @see https://developers.cloudpayments.ru/#oplata-po-tokenu-rekarring
*/
class TokenPaymentTwoStepRequest extends TokenPaymentOneStepRequest
{
* {@inheritDoc}
protected function getRelativeUrl(): string
return '/payments/tokens/auth';
}