SsrRenderInterface::render()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: polidog
5
 * Date: 2017/02/22.
6
 */
7
8
namespace Polidog\SsrBundle\Render;
9
10
use Polidog\SsrBundle\Annotations\Ssr;
11
12
interface SsrRenderInterface
13
{
14
    /**
15
     * @param Ssr   $ssr
16
     * @param array $parameters
17
     *
18
     * @return string
19
     */
20
    public function render(Ssr $ssr, array $parameters);
21
}
0 ignored issues
show
Coding Style introduced by
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
22