Completed
Push — master ( cfa612...41c7dc )
by Colin
9s
created

EmphasisConverter   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 49
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 100%

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setConfig() 0 4 1
A getSupportedTags() 0 4 1
B convert() 0 20 6
1
<?php
2
3
namespace League\HTMLToMarkdown\Converter;
4
5
use League\HTMLToMarkdown\Configuration;
6
use League\HTMLToMarkdown\ConfigurationAwareInterface;
7
use League\HTMLToMarkdown\ElementInterface;
8
9
class EmphasisConverter implements ConverterInterface, ConfigurationAwareInterface
10
{
11
    /**
12
     * @var Configuration
13
     */
14
    protected $config;
15
16
    /**
17
     * @param Configuration $config
18
     */
19 84
    public function setConfig(Configuration $config)
20
    {
21 84
        $this->config = $config;
22 84
    }
23
24
    /**
25
     * @param ElementInterface $element
26
     *
27
     * @return string
28
     */
29 12
    public function convert(ElementInterface $element)
30
    {
31 12
        $tag = $element->getTagName();
32 12
        $value = $element->getValue();
33
34 12
        if (!trim($value)) {
35 3
            return $value;
36
        }
37
38 12
        if ($tag === 'i' || $tag === 'em') {
39 9
            $style = $this->config->getOption('italic_style');
40 6
        } else {
41 9
            $style = $this->config->getOption('bold_style');
42
        }
43
44 12
        $prefix = ltrim($value) !== $value ? ' ' : '';
45 12
        $suffix = rtrim($value) !== $value ? ' ' : '';
46
47 12
        return $prefix . $style . trim($value) . $style . $suffix;
48
    }
49
50
    /**
51
     * @return string[]
52
     */
53 84
    public function getSupportedTags()
54
    {
55 84
        return array('em', 'i', 'strong', 'b');
56
    }
57
}
58