Passed
Push — master ( a5feda...06f293 )
by Andrey
03:46
created

functions.php ➔ grid_view()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * @param array $config
4
 * @return string
5
 */
6
function grid_view(array $config)
7
{
8
    return (new \Itstructure\GridView\Grid($config))->render();
9
}
10