TextileParser::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 Netcarver\Textile\Parser;
6
use Kurenai\Contracts\ContentParser;
7
8
/**
9
 * Class TextileParser
10
 *
11
 * @package \Kurenai\Parsers\Content
12
 */
13
class TextileParser 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 Parser)->textileThis($content);
0 ignored issues
show
Deprecated Code introduced by
The method Netcarver\Textile\Parser::textileThis() has been deprecated with message: in 3.6.0

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
25
    }
26
}
27