| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class EmailTemplatesUpdatedEvent extends ConfigurationEvent |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @param string $configurationId |
||
| 25 | * @param array $emailTemplates |
||
| 26 | */ |
||
| 27 | public function __construct($configurationId, public array $emailTemplates) |
||
| 28 | { |
||
| 29 | parent::__construct($configurationId); |
||
| 30 | } |
||
| 31 | |||
| 32 | public static function deserialize(array $data): self |
||
| 35 | } |
||
| 36 | |||
| 37 | public function serialize(): array |
||
| 40 | } |
||
| 41 | } |
||
| 42 |