1 | <?php |
||
11 | class Keyword implements KeywordInterface |
||
12 | { |
||
13 | /** |
||
14 | * @Type("int") |
||
15 | */ |
||
16 | private $id; |
||
17 | |||
18 | /** |
||
19 | * @Type("string") |
||
20 | */ |
||
21 | private $text; |
||
22 | |||
23 | /** |
||
24 | * @return int|null |
||
25 | */ |
||
26 | public function getId() |
||
30 | |||
31 | /** |
||
32 | * @param $id |
||
33 | * |
||
34 | * @return Keyword |
||
35 | */ |
||
36 | public function setId($id) |
||
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | public function getKeyword() |
||
50 | |||
51 | /** |
||
52 | * @param $keyword |
||
53 | * |
||
54 | * @return Keyword |
||
55 | */ |
||
56 | public function setKeyword($keyword) |
||
62 | } |
||
63 |