MarkdownConverter::convertToHtml()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 5
ccs 3
cts 3
cp 1
rs 10
cc 1
nc 1
nop 1
crap 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the league/commonmark package.
7
 *
8
 * (c) Colin O'Dell <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace League\CommonMark;
15
16
use League\CommonMark\Environment\EnvironmentInterface;
17
use League\CommonMark\Exception\CommonMarkException;
18
use League\CommonMark\Output\RenderedContentInterface;
19
use League\CommonMark\Parser\MarkdownParser;
20
use League\CommonMark\Parser\MarkdownParserInterface;
21
use League\CommonMark\Renderer\HtmlRenderer;
22
use League\CommonMark\Renderer\MarkdownRendererInterface;
23
24
class MarkdownConverter implements ConverterInterface, MarkdownConverterInterface
0 ignored issues
show
Deprecated Code introduced by
The interface League\CommonMark\MarkdownConverterInterface has been deprecated: since 2.2; use {@link ConverterInterface} instead ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

24
class MarkdownConverter implements ConverterInterface, /** @scrutinizer ignore-deprecated */ MarkdownConverterInterface

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

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

Loading history...
25
{
26
    /** @psalm-readonly */
27
    protected EnvironmentInterface $environment;
28
29
    /** @psalm-readonly */
30
    protected MarkdownParserInterface $markdownParser;
31
32
    /** @psalm-readonly */
33
    protected MarkdownRendererInterface $htmlRenderer;
34
35 2166
    public function __construct(EnvironmentInterface $environment)
36
    {
37 2166
        $this->environment = $environment;
38
39 2166
        $this->markdownParser = new MarkdownParser($environment);
40 2166
        $this->htmlRenderer   = new HtmlRenderer($environment);
41
    }
42
43 2
    public function getEnvironment(): EnvironmentInterface
44
    {
45 2
        return $this->environment;
46
    }
47
48
    /**
49
     * Converts Markdown to HTML.
50
     *
51
     * @param string $input The Markdown to convert
52
     *
53
     * @return RenderedContentInterface Rendered HTML
54
     *
55
     * @throws CommonMarkException
56
     */
57 2152
    public function convert(string $input): RenderedContentInterface
58
    {
59 2152
        $documentAST = $this->markdownParser->parse($input);
60
61 2136
        return $this->htmlRenderer->renderDocument($documentAST);
62
    }
63
64
    /**
65
     * Converts Markdown to HTML.
66
     *
67
     * @deprecated since 2.2; use {@link convert()} instead
68
     *
69
     * @param string $markdown The Markdown to convert
70
     *
71
     * @return RenderedContentInterface Rendered HTML
72
     *
73
     * @throws CommonMarkException
74
     */
75 4
    public function convertToHtml(string $markdown): RenderedContentInterface
76
    {
77 4
        \trigger_deprecation('league/commonmark', '2.2.0', 'Calling "convertToHtml()" on a %s class is deprecated, use "convert()" instead.', self::class);
78
79 4
        return $this->convert($markdown);
80
    }
81
82
    /**
83
     * Converts CommonMark to HTML.
84
     *
85
     * @see MarkdownConverter::convert()
86
     *
87
     * @throws CommonMarkException
88
     */
89 4
    public function __invoke(string $markdown): RenderedContentInterface
90
    {
91 4
        return $this->convert($markdown);
92
    }
93
}
94