Passed
Push — master ( 0f9932...7bc3f9 )
by Brent
03:42
created

function.meta.php ➔ smarty_function_meta()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
use brendt\stitcher\Config;
4
5
/**
6
 * @return mixed
7
 *
8
 * @see \brendt\stitcher\template\EnginePlugin::meta()
9
 */
10
function smarty_function_meta() {
11
    $plugin = Config::getDependency('engine.plugin');
12
13
    return $plugin->meta();
14
}
15