1 | <?php |
||
16 | class NoteParser |
||
17 | { |
||
18 | /** |
||
19 | * @param $domain |
||
20 | * @param $key |
||
21 | * @param MetadataAwareInterface $catalogue |
||
22 | * |
||
23 | * @return array |
||
24 | */ |
||
25 | public function getNotes($domain, $key, MetadataAwareInterface $catalogue) |
||
35 | |||
36 | /** |
||
37 | * @param array $notes |
||
38 | * |
||
39 | * @return bool |
||
40 | */ |
||
41 | public function hasNoteObsolete(array $notes) |
||
51 | |||
52 | /** |
||
53 | * @param array $notes |
||
54 | * |
||
55 | * @return bool |
||
56 | */ |
||
57 | public function hasNoteNew(array $notes) |
||
67 | } |
||
68 |