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

Renderer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A render() 0 4 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