for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare( strict_types = 1 );
namespace WMDE\Fundraising\Frontend\Infrastructure\Sofort\Transfer;
class Response {
/**
* @var string
*/
private $transactionId = '';
private $paymentUrl = '';
public function getTransactionId(): string {
return $this->transactionId;
}
public function setTransactionId( string $transactionId ): void {
$this->transactionId = $transactionId;
public function getPaymentUrl(): string {
return $this->paymentUrl;
public function setPaymentUrl( string $paymentUrl ): void {
$this->paymentUrl = $paymentUrl;