Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function export(): string |
||
13 | { |
||
14 | \assert($this->node instanceof Emoji); |
||
15 | |||
16 | return sprintf( |
||
17 | '<img class="adf-emoji" loading="lazy" src="https://pf-emoji-service--cdn.us-east-1.prod.public.atl-paas.net/standard/a51a7674-8d5d-4495-a2d2-a67c090f5c3b/64x64/%s.png" alt=":%s:" width="20" height="20">', |
||
18 | $this->node->getId(), |
||
|
|||
19 | $this->node->getShortName() |
||
20 | ); |
||
23 |