ParsedownParser::parse()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
ccs 2
cts 2
cp 1
cc 1
nc 1
nop 1
crap 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