1 | <?php |
||
24 | class BookMarkFormat extends AbstractFormat |
||
25 | { |
||
26 | use UrlTrait; |
||
27 | |||
28 | /** |
||
29 | * @var string bookmark title |
||
30 | */ |
||
31 | public $title; |
||
32 | |||
33 | /** |
||
34 | * @inheritdoc |
||
35 | * @throws InvalidConfigException |
||
36 | */ |
||
37 | public function init(): void |
||
43 | |||
44 | /** |
||
45 | * @inheritdoc |
||
46 | */ |
||
47 | public function getText(): string |
||
51 | } |
||
52 |