Completed
Push — master ( 7a6aee...e5c914 )
by Colin
52:42 queued 27:44
created

src/Inline/Renderer/TextRenderer.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
 * This file is part of the league/commonmark package.
5
 *
6
 * (c) Colin O'Dell <[email protected]>
7
 *
8
 * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
9
 *  - (c) John MacFarlane
10
 *
11
 * For the full copyright and license information, please view the LICENSE
12
 * file that was distributed with this source code.
13
 */
14
15
namespace League\CommonMark\Inline\Renderer;
16
17
use League\CommonMark\ElementRendererInterface;
18
use League\CommonMark\Inline\Element\AbstractInline;
19
use League\CommonMark\Inline\Element\Text;
20
21
class TextRenderer implements InlineRendererInterface
22
{
23
    /**
24
     * @param Text                     $inline
25
     * @param ElementRendererInterface $htmlRenderer
26
     *
27
     * @return string
28
     */
29 1599
    public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer)
30
    {
31 1599
        if (!($inline instanceof Text)) {
32 3
            throw new \InvalidArgumentException('Incompatible inline type: ' . get_class($inline));
33
        }
34
35 1596
        return $htmlRenderer->escape($inline->getContent());
0 ignored issues
show
Deprecated Code introduced by
The method League\CommonMark\Elemen...ererInterface::escape() has been deprecated.

This method has been deprecated.

Loading history...
36
    }
37
}
38