RendererInterface
last analyzed

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
render() 0 1 ?
1
<?php
2
3
namespace Kaloa\Renderer;
4
5
/**
6
 *
7
 */
8
interface RendererInterface
9
{
10
    /**
11
     *
12
     * @param string $input
13
     * @return string
14
     */
15
    public function render($input);
16
}
17