Completed
Push — master ( 919a96...568a86 )
by wiese
73:55 queued 09:12
created

Response::setTransactionId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
declare( strict_types = 1 );
4
5
namespace WMDE\Fundraising\Frontend\Infrastructure\Sofort\Transfer;
6
7
class Response {
8
9
	/**
10
	 * @var string
11
	 */
12
	private $transactionId = '';
13
	/**
14
	 * @var string
15
	 */
16
	private $paymentUrl = '';
17
18
	public function getTransactionId(): string {
19
		return $this->transactionId;
20
	}
21
22
	public function setTransactionId( string $transactionId ): void {
23
		$this->transactionId = $transactionId;
24
	}
25
26
	public function getPaymentUrl(): string {
27
		return $this->paymentUrl;
28
	}
29
30
	public function setPaymentUrl( string $paymentUrl ): void {
31
		$this->paymentUrl = $paymentUrl;
32
	}
33
}
34