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