Completed
Push — add/cli-generate-gitaction ( f8af7a...9d2eaa )
by
unknown
44:31 queued 34:06
created

Jetpack_Wizard   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 18
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A can_be_displayed() 0 11 1
1
<?php
2
/**
3
 * Displays the first page of the Wizard in a banner form
4
 *
5
 * @package automattic/jetpack
6
 */
7
8
/**
9
 * Jetpack_Wizard class
10
 */
11
class Jetpack_Wizard {
12
	/**
13
	 * Can the Wizard be displayed?
14
	 *
15
	 * @return bool
16
	 */
17
	public static function can_be_displayed() {
18
		/**
19
		 * Determines if the Setup Wizard is displayed or not.
20
		 *
21
		 * @since 8.5.0
22
		 * @deprecated 9.4.0
23
		 *
24
		 * @param array $jetpack_show_setup_wizard If true, the Setup Wizard will be displayed. Otherwise it will not display.
25
		 */
26
		return false;
27
	}
28
}
29