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\Response;
use Korobovn\CloudPayments\Message\Response\Model\ModelInterface;
use Korobovn\CloudPayments\Message\Response\Model\NullModel;
/**
* @method NullModel getModel()
*
* @see https://developers.cloudpayments.ru/#testovyy-metod
* @see https://developers.cloudpayments.ru/#otmena-podpiski-na-rekurrentnye-platezhi
*/
class SuccessResponse extends AbstractResponse
{
* {@inheritDoc}
public function createModel(): ModelInterface
return new NullModel;
}