RowDataAwareInterface
last analyzed

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
getRowData() 0 1 ?
setRowData() 0 1 ?
1
<?php
2
/**
3
 * @company MTE Telecom, Ltd.
4
 * @author Roman Malashin <[email protected]>
5
 */
6
7
namespace Nnx\DataGrid;
8
9
use ArrayAccess;
10
11
/**
12
 * Interface RowDataAwareInterface
13
 * @package Nnx\DataGrid\Column
14
 */
15
interface RowDataAwareInterface
16
{
17
    /**
18
     * Возвращает данные строки
19
     * @return array|ArrayAccess
20
     */
21
    public function getRowData();
22
23
    /**
24
     * Устанавливает данные строки
25
     * @param array|ArrayAccess $data
26
     * @return $this
27
     */
28
    public function setRowData($data);
29
}
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...
30