AjaxProviderInterface::getUrl()
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
 * @company MTE Telecom, Ltd.
4
 * @author Roman Malashin <[email protected]>
5
 */
6
7
namespace Nnx\DataGrid;
8
9
/**
10
 * Interface AjaxProviderInterface
11
 * @package Nnx\DataGrid
12
 */
13
interface AjaxProviderInterface
14
{
15
    /**
16
     * Устанавливает ссылку для ajax запроса
17
     * @param string $url
18
     * @return $this
19
     */
20
    public function setUrl($url);
21
22
23
    /**
24
     * Возвращает ссылку для ajax запроса
25
     * @return string
26
     */
27
    public function getUrl();
28
}
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...
29