Completed
Push — master ( f48979...1564bf )
by wiese
195:26 queued 130:26
created

ShowAppConfirmationRequest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 13
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A getApplicationId() 0 3 1
1
<?php
2
3
declare( strict_types = 1 );
4
5
namespace WMDE\Fundraising\Frontend\MembershipContext\UseCases\ShowApplicationConfirmation;
6
7
/**
8
 * @licence GNU GPL v2+
9
 * @author Kai Nissen < [email protected] >
10
 */
11
class ShowAppConfirmationRequest {
12
13
	private $applicationId;
14
15
	public function __construct( int $applicationId ) {
16
		$this->applicationId = $applicationId;
17
	}
18
19
	public function getApplicationId(): int {
20
		return $this->applicationId;
21
	}
22
23
}
24