GridButtonProviderInterface::getGridButtonConfig()
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\Button;
8
9
use Traversable;
10
11
/**
12
 * Interface GridButtonProviderInterface
13
 * @package Nnx\DataGrid\Button
14
 */
15
interface GridButtonProviderInterface
16
{
17
    /**
18
     * Возвращает конфигурацию кнопок
19
     * @return array | Traversable
20
     */
21
    public function getGridButtonConfig();
22
}
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...
23