Completed
Push — add/support-for-multi-site-res... ( 2212a9...df602e )
by
unknown
21:07 queued 11:04
created

Jetpack_Logo::output()   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 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Jetpack Logo for use on dashboard pages.
4
 *
5
 * @since 2.1.0
6
 *
7
 * @package VaultPress
8
 */
9
10
use Automattic\Jetpack\Assets\Logo;
11
12
/**
13
 * Jetpack Logo Class.
14
 */
15
class Jetpack_Logo {
16
	/**
17
	 * Constructor.
18
	 */
19
	public function __construct() {
20
	}
21
22
	/**
23
	 * Display a Jetpack Logo.
24
	 */
25
	public function output() {
26
		$logo = new Logo();
27
		return $logo->render();
28
	}
29
}
30