Completed
Push — master ( 37d275...78934e )
by Iman
02:08
created

helpers.php ➔ render_widget()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
use Imanghafoori\Widgets\BaseWidget;
3
4
if (!function_exists('render_widget')) {
5
    function render_widget(BaseWidget $widget, ...$args)
6
    {
7
        return app('imanghafoori.widget.renderer')->renderWidget($widget, ...$args);
8
    }
9
}
10