| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class UpdateDelegateInformation implements CommandInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var DelegateInfo |
||
| 12 | */ |
||
| 13 | private $delegateInfo; |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $delegateId; |
||
| 18 | |||
| 19 | public function __construct( |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getDelegateInfo(): DelegateInfo |
||
| 28 | { |
||
| 29 | return $this->delegateInfo; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getDelegateId(): string |
||
| 35 | } |
||
| 36 | } |