ParsedownParser   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 14
rs 10
c 0
b 0
f 0
ccs 2
cts 2
cp 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A parse() 0 4 1
1
<?php
2
3
namespace Kurenai\Parsers\Content;
4
5
use Parsedown;
6
use Kurenai\Contracts\ContentParser;
7
8
/**
9
 * Class ParsedownParser
10
 *
11
 * @package \Kurenai\Parsers\Content
12
 */
13
class ParsedownParser implements ContentParser
14
{
15
    /**
16
     * Parse raw content into new format.
17
     *
18
     * @param string $content
19
     *
20
     * @return string
21
     */
22 1
    public function parse($content)
23
    {
24 1
        return (new Parsedown)->text($content);
25
    }
26
}
27