| Total Complexity | 7 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | final class ModifyDownloadRegistrationCsvEvent |
||
| 19 | { |
||
| 20 | public function __construct( |
||
| 21 | protected string $csvContent, |
||
| 22 | protected string $downloadFilename, |
||
| 23 | protected readonly int $eventUid, |
||
| 24 | protected readonly array $settings |
||
| 25 | ) { |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getCsvContent(): string |
||
| 29 | { |
||
| 30 | return $this->csvContent; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function setCsvContent(string $csvContent): void |
||
| 34 | { |
||
| 35 | $this->csvContent = $csvContent; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getDownloadFilename(): string |
||
| 39 | { |
||
| 40 | return $this->downloadFilename; |
||
| 41 | } |
||
| 42 | |||
| 43 | public function setDownloadFilename(string $downloadFilename): void |
||
| 44 | { |
||
| 45 | $this->downloadFilename = $downloadFilename; |
||
| 46 | } |
||
| 47 | |||
| 48 | public function getEventUid(): int |
||
| 49 | { |
||
| 50 | return $this->eventUid; |
||
| 51 | } |
||
| 52 | |||
| 53 | public function getSettings(): array |
||
| 56 | } |
||
| 57 | } |
||
| 58 |