Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class UpdateDelegateInformation implements CommandInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var DelegateInfo |
||
13 | * @JMS\Type("ConferenceTools\Checkin\Domain\ValueObject\DelegateInfo") |
||
14 | */ |
||
15 | private $delegateInfo; |
||
16 | /** |
||
17 | * @var string |
||
18 | * @JMS\Type("string") |
||
19 | */ |
||
20 | private $delegateId; |
||
21 | |||
22 | public function __construct( |
||
28 | } |
||
29 | |||
30 | public function getDelegateInfo(): DelegateInfo |
||
31 | { |
||
32 | return $this->delegateInfo; |
||
33 | } |
||
34 | |||
35 | public function getDelegateId(): string |
||
38 | } |
||
39 | } |