Completed
Pull Request — master (#31)
by Andrew
03:03
created

template-functions.php ➔ get_theme_framework()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Template functions.
4
 *
5
 * @package Classy
6
 */
7
8
/**
9
 * Grab the Classy object and return it.
10
 * Wrapper for Classy::get_instance()
11
 *
12
 * @since  0.1.0
13
 * @return \Classy\Classy  Singleton instance of plugin class.
14
 */
15
function get_theme_framework() {
16
	return \Classy\Classy::get_instance();
17
}
18