Link   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 3
Bugs 2 Features 0
Metric Value
wmc 1
c 3
b 2
f 0
lcom 0
cbo 1
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A tagName() 0 4 1
1
<?php
2
3
namespace hemio\html;
4
5
/**
6
 * The <code>link</code> element represents metadata that expresses inter-
7
 * document relationships.
8
 *
9
 * @since version 1.0
10
 * @url http://www.w3.org/TR/html5/document-metadata.html#the-link-element
11
 */
12
class Link extends Abstract_\ElementEmpty implements Interface_\ContentModelMetadata
13
{
14
15
    public static function tagName()
16
    {
17
        return 'link';
18
    }
19
}
20