| 1 | <?php |
||
| 23 | class User |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @Elasticsearch\Id() |
||
| 27 | */ |
||
| 28 | public $id; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @Elasticsearch\Embedded( |
||
| 32 | * class="Kreta\Notifier\Infrastructure\Projection\ReadModel\Inbox\Elasticsearch\Document\Notification", |
||
| 33 | * multiple=true |
||
| 34 | * ) |
||
| 35 | */ |
||
| 36 | public $notifications; |
||
| 37 | |||
| 38 | public function __construct(string $id = null) |
||
| 43 | } |
||
| 44 |