ExternalLinkNode::render()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 3
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace dokuwiki\plugin\prosemirror\parser;
4
5
class ExternalLinkNode extends LinkNode
6
{
7
    public function toSyntax()
8
    {
9
        return $this->getDefaultLinkSyntax($this->attrs['data-inner']);
10
    }
11
12
    public static function render($renderer, $link, $name)
13
    {
14
        self::renderToJSON(
15
            $renderer,
16
            'externallink',
17
            $link,
18
            $name
19
        );
20
    }
21
}
22