1 | <?php |
||
12 | class NoteService extends BaseService |
||
13 | { |
||
14 | /** |
||
15 | * @var array Note |
||
16 | */ |
||
17 | protected $entities = []; |
||
18 | |||
19 | /** |
||
20 | * @param Note $note |
||
21 | */ |
||
22 | 2 | public function add(EntityInterface $note) |
|
28 | |||
29 | /** |
||
30 | * @param $array |
||
31 | * @return Note |
||
32 | */ |
||
33 | 2 | public function parseArrayToEntity($array) |
|
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | 2 | protected function getLink() |
|
48 | |||
49 | } |