TextileParser   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 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