Completed
Push — master ( bdfdc7...772f65 )
by Kirill
02:27
created

Renderer::render()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * This file is part of Platform package.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 */
8
declare(strict_types=1);
9
10
namespace Karma\System\Gitter\Message;
11
12
use Karma\Platform\Transformer\RendererInterface;
13
14
/**
15
 * Class Renderer
16
 * @package Karma\System\Gitter\Message
17
 */
18
class Renderer implements RendererInterface
19
{
20
    /**
21
     * @param string $html
22
     * @return string
23
     */
24
    public function render(string $html): string
25
    {
26
        return $html;
27
    }
28
}
29