Textarea   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 3
Bugs 1 Features 1
Metric Value
wmc 1
c 3
b 1
f 1
lcom 0
cbo 3
dl 0
loc 11
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 textarea element represents a multi-line plain-text edit control for
7
  the element’s raw value.
8
 *
9
 * @since version 1.0
10
 * @url http://www.w3.org/TR/html5/
11
 */
12
class Textarea extends Abstract_\ElementContent implements Interface_\Submittable
13
{
14
15
    use Trait_\Submittable,
16
        Trait_\DefaultElementContent;
17
18
    public static function tagName()
19
    {
20
        return 'textarea';
21
    }
22
}
23