Base   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 1 Features 0
Metric Value
wmc 1
c 3
b 1
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>base</code> element specifies a document-wide base URL for the
7
 * purposes of resolving relative URLs, and a document-wide default browsing
8
 * context name for the purposes of following hyperlinks.
9
 *
10
 * @since version 1.0
11
 * @url http://www.w3.org/TR/html5/document-metadata.html#the-base-element
12
 */
13
class Base extends Abstract_\ElementEmpty implements Interface_\ContentModelMetadata
14
{
15
16
    public static function tagName()
17
    {
18
        return 'base';
19
    }
20
}
21