1 | <?php |
||
8 | class CmsArticle |
||
9 | { |
||
10 | /** @Id */ |
||
11 | public $id; |
||
12 | /** @Field(type="string") */ |
||
13 | public $topic; |
||
14 | /** @Field(type="string") */ |
||
15 | public $text; |
||
16 | /** @ReferenceOne(targetDocument="CmsUser") */ |
||
17 | public $user; |
||
18 | public $comments; |
||
19 | /** @Version */ |
||
20 | public $version; |
||
21 | |||
22 | /** @Attachments */ |
||
23 | public $attachments; |
||
24 | |||
25 | public function setAuthor(CmsUser $author) { |
||
28 | |||
29 | public function addComment(CmsComment $comment) { |
||
33 | } |
||
34 |