Completed
Pull Request — master (#2466)
by
unknown
44s
created
classes/controllers/FrmWelcomeTourController.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
 	 *
184 184
 	 * @return array
185 185
 	 */
186
-	private static function get_js_variables() {		
186
+	private static function get_js_variables() {
187 187
 		return array(
188 188
 			'IS_WELCOME_TOUR_SEEN' => ! self::is_welcome_tour_not_seen(),
189 189
 			'i18n'                 => array(
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 		$current_step = 0;
121 121
 		foreach ( $step_keys as $step_key ) {
122 122
 			if ( in_array( $step_key, self::$checklist['completed_steps'], true ) ) {
123
-				$current_step++;
123
+				$current_step ++;
124 124
 			} else {
125 125
 				break;
126 126
 			}
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
 	 */
265 265
 	private static function fill_step_completed_data( $steps ) {
266 266
 		foreach ( $steps as $step_key => $step ) {
267
-			$steps[ $step_key ]['complete'] = in_array( $step_key, self::$checklist['completed_steps'], true );
267
+			$steps[$step_key]['complete'] = in_array( $step_key, self::$checklist['completed_steps'], true );
268 268
 		}
269 269
 		return $steps;
270 270
 	}
Please login to merge, or discard this patch.