Html   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A renderInternal() 0 4 1
1
<?php
2
/**
3
 * Render the HTML element
4
 *
5
 * @author  Tim Lochmüller
6
 */
7
8
namespace FRUIT\Ink\Rendering;
9
10
/**
11
 * Render the HTML element
12
 */
13
class Html extends AbstractRendering
14
{
15
16
    /**
17
     * Get the liens for the current HTML element
18
     *
19
     * @return array
20
     */
21
    public function renderInternal()
22
    {
23
        return array($this->breakContent(strip_tags($this->contentObject->data['bodytext'])));
24
    }
25
}
26