1 | <?php |
||
10 | class Article |
||
11 | { |
||
12 | /** @Id(type="string") */ |
||
13 | protected $id; |
||
14 | /** @Field(type="string") */ |
||
15 | protected $title; |
||
16 | /** @Field(type="string", indexed=true) */ |
||
17 | protected $slug; |
||
18 | /** @Field(type="string") */ |
||
19 | protected $body; |
||
20 | /** @Field(type="datetime") */ |
||
21 | protected $created; |
||
22 | /** @EmbedMany(targetDocument="Documents\Tag") */ |
||
23 | protected $tags; |
||
24 | |||
25 | public function __construct() |
||
30 | |||
31 | public function getId() |
||
35 | |||
36 | public function getTitle() |
||
40 | |||
41 | public function setTitle($title) |
||
45 | |||
46 | public function getBody() |
||
50 | |||
51 | public function setBody($body) |
||
55 | |||
56 | public function getCreated() |
||
60 | |||
61 | public function getTags() |
||
65 | |||
66 | public function addTag($tag) |
||
70 | } |