1 | <?php declare(strict_types = 1); |
||
9 | class TestAggregateCreated extends AggregateChanged implements AsyncMessage |
||
10 | { |
||
11 | private const TEST_PAYLOAD_KEY = 'key'; |
||
12 | private const TEST_PAYLOAD_VALUE = 'value'; |
||
13 | public const TEST_PAYLOAD = [ |
||
14 | self::TEST_PAYLOAD_KEY => self::TEST_PAYLOAD_VALUE, |
||
15 | ]; |
||
16 | |||
17 | public static function create(UuidInterface $uuid): AggregateChanged |
||
24 | } |
||
25 |