| 1 | <?php |
||
| 21 | class ClientParameterChangedEvent extends Event |
||
| 22 | { |
||
| 23 | private $clientId; |
||
| 24 | private $parameter; |
||
| 25 | |||
| 26 | public function __construct(ClientId $clientId, DataBag $parameter) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public static function getSchema(): string |
||
| 39 | |||
| 40 | public function getClientId(): ClientId |
||
| 44 | |||
| 45 | public function getParameter(): DataBag |
||
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritdoc} |
||
| 52 | */ |
||
| 53 | public function getDomainId(): Id |
||
| 57 | |||
| 58 | /** |
||
| 59 | * {@inheritdoc} |
||
| 60 | */ |
||
| 61 | public function getPayload() |
||
| 67 | } |
||
| 68 |