GridProviderInterface
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
getGridConfig() 0 1 ?
1
<?php
2
/**
3
 * @company MTE Telecom, Ltd.
4
 * @author Roman Malashin <[email protected]>
5
 */
6
7
namespace Nnx\DataGrid;
8
9
/**
10
 * Interface GridPluginManagerProviderInterface
11
 * @package Nnx\DataGrid
12
 */
13
interface GridProviderInterface
14
{
15
    /**
16
     * Возвращает конфигурацию таблиц
17
     * @return array
18
     */
19
    public function getGridConfig();
20
}
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...
21