easy_grid()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 1 Features 1
Metric Value
cc 1
eloc 1
c 2
b 1
f 1
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
/**
3
 * @param array $config
4
 * @return string
5
 * @throws Throwable
6
 */
7
function easy_grid(array $config)
8
{
9
    return (new \ChurakovMike\EasyGrid\Grid($config))->render();
10
}
11