GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — develop ( a72c17...d9e3e6 )
by Chris
02:29
created
inc/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
  * @return string All the games in formatted HTML.
91 91
  */
92 92
 function gc_get_games() {
93
-	return Shortcode\shortcode( [] );
93
+	return Shortcode\shortcode( [ ] );
94 94
 }
95 95
 
96 96
 /**
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
  * @since 0.2
100 100
  */
101 101
 function gc_the_games() {
102
-	echo Shortcode\shortcode( [] ); // WPCS: XSS ok. Already sanitized.
102
+	echo Shortcode\shortcode( [ ] ); // WPCS: XSS ok. Already sanitized.
103 103
 }
104 104
 
105 105
 /**
Please login to merge, or discard this patch.
inc/game/namespace.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 				],
50 50
 			],
51 51
 			// Dropdown filters.
52
-			'admin_filters'       => [],
52
+			'admin_filters'       => [ ],
53 53
 		], [
54 54
 			'singular'      => __( 'Game', 'games-collector' ),
55 55
 			'plural'        => __( 'Games', 'games-collector' ),
@@ -70,9 +70,9 @@  discard block
 block discarded – undo
70 70
 		'id'            => $prefix . 'metabox',
71 71
 		'title'         => __( 'Game Details', 'games-collector' ),
72 72
 		'object_types'  => [ 'gc_game' ],
73
-	]);
73
+	] );
74 74
 
75
-	$cmb->add_field([
75
+	$cmb->add_field( [
76 76
 		'name'       => __( 'Minimum Number of Players', 'games-collector' ),
77 77
 		'id'         => $prefix . 'min_players',
78 78
 		'type'       => 'text_small',
@@ -80,9 +80,9 @@  discard block
 block discarded – undo
80 80
 			'type'        => 'number',
81 81
 			'placeholder' => '1',
82 82
 		],
83
-	]);
83
+	] );
84 84
 
85
-	$cmb->add_field([
85
+	$cmb->add_field( [
86 86
 		'name'       => __( 'Maximum Number of Players', 'games-collector' ),
87 87
 		'id'         => $prefix . 'max_players',
88 88
 		'type'       => 'text_small',
@@ -90,9 +90,9 @@  discard block
 block discarded – undo
90 90
 			'type'        => 'number',
91 91
 			'placeholder' => '4',
92 92
 		],
93
-	]);
93
+	] );
94 94
 
95
-	$cmb->add_field([
95
+	$cmb->add_field( [
96 96
 		'name'       => __( 'Playing Time', 'games-collector' ),
97 97
 		'id'         => $prefix . 'time',
98 98
 		'type'       => 'text_small',
@@ -100,9 +100,9 @@  discard block
 block discarded – undo
100 100
 		'attributes' => [
101 101
 			'placeholder' => '20-30',
102 102
 		],
103
-	]);
103
+	] );
104 104
 
105
-	$cmb->add_field([
105
+	$cmb->add_field( [
106 106
 		'name'       => __( 'Ages', 'games-collector' ),
107 107
 		'id'         => $prefix . 'age',
108 108
 		'type'       => 'text_small',
@@ -111,16 +111,16 @@  discard block
 block discarded – undo
111 111
 			'type'        => 'number',
112 112
 			'placeholder' => '10',
113 113
 		],
114
-	]);
114
+	] );
115 115
 
116
-	$cmb->add_field([
116
+	$cmb->add_field( [
117 117
 		'name'       => __( 'Difficulty Level', 'games-collector' ),
118 118
 		'id'         => $prefix . 'difficulty',
119 119
 		'type'       => 'radio',
120 120
 		'desc'       => __( 'How difficult or complex is this game?', 'games-collector' ),
121 121
 		'options'    => get_difficulties(),
122 122
 		'default'    => 'easy',
123
-	]);
123
+	] );
124 124
 
125 125
 	$cmb->add_field( array(
126 126
 		'name'       => __( 'More Info Link', 'games-collector' ),
@@ -148,8 +148,8 @@  discard block
 block discarded – undo
148 148
 
149 149
 	$players_min_max = get_players_min_max( $post_id );
150 150
 
151
-	if ( isset( $players_min_max['min'] ) && isset( $players_min_max['max'] ) ) {
152
-		return sprintf( '%1$s - %2$s', $players_min_max['min'], $players_min_max['max'] );
151
+	if ( isset( $players_min_max[ 'min' ] ) && isset( $players_min_max[ 'max' ] ) ) {
152
+		return sprintf( '%1$s - %2$s', $players_min_max[ 'min' ], $players_min_max[ 'max' ] );
153 153
 	}
154 154
 
155 155
 	return;
@@ -291,20 +291,20 @@  discard block
 block discarded – undo
291 291
 	$difficulty = get_post_meta( $post_id, '_gc_difficulty', true );
292 292
 	$length     = get_game_length( $post_id );
293 293
 
294
-	if ( isset( $players['min'] ) ) {
295
-		$classes .= ' min-' . $players['min'] . '-players';
294
+	if ( isset( $players[ 'min' ] ) ) {
295
+		$classes .= ' min-' . $players[ 'min' ] . '-players';
296 296
 	}
297 297
 
298
-	if ( isset( $players['max'] ) ) {
299
-		if ( absint( $players['max'] ) >= 8 ) {
298
+	if ( isset( $players[ 'max' ] ) ) {
299
+		if ( absint( $players[ 'max' ] ) >= 8 ) {
300 300
 			$classes .= ' 8-or-more-players';
301 301
 		} else {
302
-			$classes .= ' max-' . $players['max'] . '-players';
302
+			$classes .= ' max-' . $players[ 'max' ] . '-players';
303 303
 		}
304 304
 	}
305 305
 
306
-	if ( isset( $players['min'] ) && ! isset( $players['max'] ) ) {
307
-		$classes .= ' ' . $players['min'] . '-players';
306
+	if ( isset( $players[ 'min' ] ) && ! isset( $players[ 'max' ] ) ) {
307
+		$classes .= ' ' . $players[ 'min' ] . '-players';
308 308
 	}
309 309
 
310 310
 	if ( $age ) {
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
 
341 341
 	$game_time = str_replace( ' ', '', get_post_meta( $post_id, '_gc_time', true ) );
342 342
 	$time      = explode( '-', $game_time );
343
-	$time      = isset( $time[1] ) ? $time[1] : $time[0];
343
+	$time      = isset( $time[ 1 ] ) ? $time[ 1 ] : $time[ 0 ];
344 344
 
345 345
 	if ( $game_time ) {
346 346
 		switch ( $time ) {
Please login to merge, or discard this patch.
inc/api/namespace.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -28,27 +28,27 @@
 block discarded – undo
28 28
 	$link        = get_post_meta( $post->ID, '_gc_link' );
29 29
 
30 30
 	if ( $min_players ) {
31
-		$data->data['min_players'] = $min_players;
31
+		$data->data[ 'min_players' ] = $min_players;
32 32
 	}
33 33
 
34 34
 	if ( $max_players ) {
35
-		$data->data['max_players'] = $max_players;
35
+		$data->data[ 'max_players' ] = $max_players;
36 36
 	}
37 37
 
38 38
 	if ( $time ) {
39
-		$data->data['time'] = $time;
39
+		$data->data[ 'time' ] = $time;
40 40
 	}
41 41
 
42 42
 	if ( $age ) {
43
-		$data->data['age'] = $age;
43
+		$data->data[ 'age' ] = $age;
44 44
 	}
45 45
 
46 46
 	if ( $difficulty ) {
47
-		$data->data['difficulty'] = $difficulty;
47
+		$data->data[ 'difficulty' ] = $difficulty;
48 48
 	}
49 49
 
50 50
 	if ( $link ) {
51
-		$data->data['url'] = $link;
51
+		$data->data[ 'url' ] = $link;
52 52
 	}
53 53
 
54 54
 	return $data;
Please login to merge, or discard this patch.
inc/display/namespace.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -61,11 +61,11 @@  discard block
 block discarded – undo
61 61
 
62 62
 		<div class="game-info" id="game-<?php echo absint( $game_id ); ?>-info">
63 63
 			<?php
64
-			echo get_players( $game_id );      // WPCS: XSS ok, already sanitized.
64
+			echo get_players( $game_id ); // WPCS: XSS ok, already sanitized.
65 65
 			echo get_playing_time( $game_id ); // WPCS: XSS ok, already sanitized.
66
-			echo get_age( $game_id );          // WPCS: XSS ok, already sanitized.
67
-			echo get_difficulty( $game_id );   // WPCS: XSS ok, already sanitized.
68
-			echo get_attributes( $game_id );   // WPCS: XSS ok, already sanitized.
66
+			echo get_age( $game_id ); // WPCS: XSS ok, already sanitized.
67
+			echo get_difficulty( $game_id ); // WPCS: XSS ok, already sanitized.
68
+			echo get_attributes( $game_id ); // WPCS: XSS ok, already sanitized.
69 69
 			?>
70 70
 		</div>
71 71
 
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
  * @return string Select markup for filters.
160 160
  */
161 161
 function get_filters() {
162
-	$player_filter     = '<div class="player-filter"><label for="players-filter-select">' . esc_html__( 'How many players?', 'games-collector' ) . ':</label>
162
+	$player_filter = '<div class="player-filter"><label for="players-filter-select">' . esc_html__( 'How many players?', 'games-collector' ) . ':</label>
163 163
 		<select class="players-filter-select">
164 164
 			<option selected>- ' . esc_html__( 'Select one', 'games-collector' ) . ' -</option>
165 165
 			<option value=".2-players,.min-2-players,.max-2-players,.max-3-players,.max-4-players,.max-5-players,.max-6-players,.max-7-players,.8-or-more-players">' . esc_html__( '2+ players', 'games-collector' ) . '</option>
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 	$attribute_list = Attributes\get_the_attribute_list(
230 230
 		$game_id,
231 231
 		'<div class="game-attributes"><span class="gc-icon icon-game-attributes">' . get_svg( 'tags', false ) . '</span><span class="game-attributes" id="game-' . absint( $game_id ) . '-attributes">', // Before.
232
-		', ',                                       // Seperator.
232
+		', ', // Seperator.
233 233
 		'</span></div>'                             // After.
234 234
 	);
235 235
 
@@ -254,14 +254,14 @@  discard block
 block discarded – undo
254 254
 function get_players( $game_id ) {
255 255
 	$players_min_max = Game\get_players_min_max( $game_id );
256 256
 
257
-	if ( isset( $players_min_max['min'] ) ) {
257
+	if ( isset( $players_min_max[ 'min' ] ) ) {
258 258
 			ob_start(); ?>
259 259
 
260 260
 		<span class="gc-icon icon-game-players"><?php the_svg( 'players', false ); ?></span><span class="game-num-players" id="game-<?php echo absint( $game_id ); ?>-num-players"><?php echo esc_attr( sprintf(
261 261
 			// Translators: 1: Minimum number of players, 2: Maximum number of players.
262 262
 			__( '%1$d %2$s players', 'games-collector' ),
263
-			absint( $players_min_max['min'] ),
264
-			isset( $players_min_max['max'] ) ? sprintf( '- %d', absint( $players_min_max['max'] ) ) : '+'
263
+			absint( $players_min_max[ 'min' ] ),
264
+			isset( $players_min_max[ 'max' ] ) ? sprintf( '- %d', absint( $players_min_max[ 'max' ] ) ) : '+'
265 265
 		) ); ?></span><?php
266 266
 
267 267
 		$output = ob_get_clean();
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
 		return;
371 371
 	}
372 372
 
373
-	wp_enqueue_style( 'games-collector', dirname( dirname( plugin_dir_url( __FILE__ ) ) ) . '/assets/css/games-collector.css', [], '1.1.0-r2' );
373
+	wp_enqueue_style( 'games-collector', dirname( dirname( plugin_dir_url( __FILE__ ) ) ) . '/assets/css/games-collector.css', [ ], '1.1.0-r2' );
374 374
 	wp_enqueue_script( 'isotope', dirname( dirname( plugin_dir_url( __FILE__ ) ) ) . '/assets/js/isotope.pkgd.min.js', [ 'jquery' ], '3.0.1', true );
375 375
 	wp_enqueue_script( 'games-collector', dirname( dirname( plugin_dir_url( __FILE__ ) ) ) . '/assets/js/games-collector.js', [ 'jquery', 'isotope' ], '0.2' );
376 376
 }
Please login to merge, or discard this patch.
plugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 	// Autoload the namespaces.
56 56
 	$namespaces = array_filter( glob( dirname( __FILE__ ) . '/inc/*' ), 'is_dir' );
57 57
 	foreach ( $namespaces as $namespace ) {
58
-		$files[] = $namespace . '/namespace.php';
58
+		$files[ ] = $namespace . '/namespace.php';
59 59
 	}
60 60
 
61 61
 	// Loop through and load all the things!
Please login to merge, or discard this patch.
inc/attributes/namespace.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  */
17 17
 function register_taxonomy() {
18 18
 	register_extended_taxonomy( 'gc_attribute', 'gc_game', [
19
-			'dashboard_glance' => true,   // Show this taxonomy in the 'At a Glance' widget.
19
+			'dashboard_glance' => true, // Show this taxonomy in the 'At a Glance' widget.
20 20
 			'hierarchical'     => false,
21 21
 			'show_in_rest'     => true,
22 22
 			'rest_base'        => 'attributes',
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 	}
52 52
 
53 53
 	wp_enqueue_script( 'chosen', plugin_dir_url( dirname( dirname( __FILE__ ) ) ) . 'vendor/chosen-js/chosen.jquery.js', [ 'jquery' ], '1.6.2', true );
54
-	wp_enqueue_style( 'chosen', plugin_dir_url( dirname( dirname( __FILE__ ) ) ) . 'vendor/chosen-js/chosen.css', [], '1.6.2' );
54
+	wp_enqueue_style( 'chosen', plugin_dir_url( dirname( dirname( __FILE__ ) ) ) . 'vendor/chosen-js/chosen.css', [ ], '1.6.2' );
55 55
 }
56 56
 
57 57
 /**
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
  */
185 185
 function save_post( $post_id ) {
186 186
 	// Verify nonce.
187
-	if ( ! isset( $_POST['chosen_taxonomy_meta_box_nonce'] ) || ! wp_verify_nonce( $_POST['chosen_taxonomy_meta_box_nonce'], 'chosen-save-tax-terms' ) ) {
187
+	if ( ! isset( $_POST[ 'chosen_taxonomy_meta_box_nonce' ] ) || ! wp_verify_nonce( $_POST[ 'chosen_taxonomy_meta_box_nonce' ], 'chosen-save-tax-terms' ) ) {
188 188
 		return;
189 189
 	}
190 190
 	// Check autosave.
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 		return;
193 193
 	}
194 194
 
195
-	$input = isset( $_POST['tax_input']['gc_attribute'] ) ? $_POST['tax_input']['gc_attribute'] : '';
195
+	$input = isset( $_POST[ 'tax_input' ][ 'gc_attribute' ] ) ? $_POST[ 'tax_input' ][ 'gc_attribute' ] : '';
196 196
 
197 197
 	if ( empty( $input ) ) {
198 198
 		$taxonomy = get_taxonomy( 'gc_attribute' );
@@ -250,19 +250,19 @@  discard block
 block discarded – undo
250 250
 function gc_kses( $string = '' ) {
251 251
 	$allowed_html = array_merge( wp_kses_allowed_html( 'post' ), [
252 252
 		'svg'   => [
253
-			'class'           => [],
254
-			'aria-labelledby' => [],
255
-			'role'            => [],
256
-			'version'         => [],
257
-			'xmlns'           => [],
258
-			'xmlns:xlink'     => [],
259
-			'height'          => [],
260
-			'width'           => [],
261
-			'viewbox'         => [],
253
+			'class'           => [ ],
254
+			'aria-labelledby' => [ ],
255
+			'role'            => [ ],
256
+			'version'         => [ ],
257
+			'xmlns'           => [ ],
258
+			'xmlns:xlink'     => [ ],
259
+			'height'          => [ ],
260
+			'width'           => [ ],
261
+			'viewbox'         => [ ],
262 262
 		],
263
-		'title' => [],
263
+		'title' => [ ],
264 264
 		'path'  => [
265
-			'd'               => [],
265
+			'd'               => [ ],
266 266
 		],
267 267
 	] );
268 268
 
Please login to merge, or discard this patch.
inc/namespace.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -14,17 +14,17 @@  discard block
 block discarded – undo
14 14
  */
15 15
 function bootstrap() {
16 16
 	// Add all your plugin hooks here.
17
-	add_action( 'cmb2_init',               __NAMESPACE__ . '\\Game\\fields' );
18
-	add_action( 'init',                    __NAMESPACE__ . '\\Game\\register_cpt' );
19
-	add_action( 'init',                    __NAMESPACE__ . '\\Attributes\\register_taxonomy' );
20
-	add_action( 'admin_init',              __NAMESPACE__ . '\\Attributes\\create_default_attributes' );
21
-	add_action( 'add_meta_boxes',          __NAMESPACE__ . '\\Attributes\\metabox' );
22
-	add_action( 'admin_enqueue_scripts',   __NAMESPACE__ . '\\Attributes\\enqueue_scripts' );
23
-	add_action( 'wp_enqueue_scripts',      __NAMESPACE__ . '\\Display\\enqueue_scripts' );
24
-	add_action( 'register_shortcode_ui',   __NAMESPACE__ . '\\Shortcode\\register_all_games_shortcode' );
25
-	add_action( 'register_shortcode_ui',   __NAMESPACE__ . '\\Shortcode\\register_individual_games_shortcode' );
26
-	add_filter( 'rest_prepare_gc_game',    __NAMESPACE__ . '\\Api\\filter_games_json', 10, 2 );
27
-	add_shortcode( 'games-collector',      __NAMESPACE__ . '\\Shortcode\\shortcode' );
17
+	add_action( 'cmb2_init', __NAMESPACE__ . '\\Game\\fields' );
18
+	add_action( 'init', __NAMESPACE__ . '\\Game\\register_cpt' );
19
+	add_action( 'init', __NAMESPACE__ . '\\Attributes\\register_taxonomy' );
20
+	add_action( 'admin_init', __NAMESPACE__ . '\\Attributes\\create_default_attributes' );
21
+	add_action( 'add_meta_boxes', __NAMESPACE__ . '\\Attributes\\metabox' );
22
+	add_action( 'admin_enqueue_scripts', __NAMESPACE__ . '\\Attributes\\enqueue_scripts' );
23
+	add_action( 'wp_enqueue_scripts', __NAMESPACE__ . '\\Display\\enqueue_scripts' );
24
+	add_action( 'register_shortcode_ui', __NAMESPACE__ . '\\Shortcode\\register_all_games_shortcode' );
25
+	add_action( 'register_shortcode_ui', __NAMESPACE__ . '\\Shortcode\\register_individual_games_shortcode' );
26
+	add_filter( 'rest_prepare_gc_game', __NAMESPACE__ . '\\Api\\filter_games_json', 10, 2 );
27
+	add_shortcode( 'games-collector', __NAMESPACE__ . '\\Shortcode\\shortcode' );
28 28
 	add_shortcode( 'games-collector-list', __NAMESPACE__ . '\\Shortcode\\shortcode' );
29 29
 }
30 30
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
  */
36 36
 function activate() {
37 37
 	if ( ! get_page_by_title( esc_html__( 'Games', 'games-collector' ) ) ) {
38
-		wp_insert_post([
38
+		wp_insert_post( [
39 39
 			'post_type'    => 'page',
40 40
 			'post_title'   => esc_html__( 'Games', 'games-collector' ),
41 41
 			'post_content' => '[games-collector]',
Please login to merge, or discard this patch.
inc/shortcode/namespace.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -21,20 +21,20 @@  discard block
 block discarded – undo
21 21
  * @return string      Displays a list of all games.
22 22
  */
23 23
 function shortcode( $atts ) {
24
-	$atts = shortcode_atts([
24
+	$atts = shortcode_atts( [
25 25
 		'gc_game' => '',
26 26
 	], $atts );
27 27
 
28 28
 	// Get the ID from the atts, if one was set, so we can get a single game (or all games).
29
-	$post_ids = [];
30
-	if ( '' === $atts['gc_game'] ) {
29
+	$post_ids = [ ];
30
+	if ( '' === $atts[ 'gc_game' ] ) {
31 31
 		$post_ids = $post_ids;
32
-	} elseif ( is_array( $atts['gc_game'] ) ) {
33
-		$post_ids = $atts['gc_game'];
34
-	} elseif ( false !== strpos( (string) $atts['gc_game'], ',' ) ) {
35
-		$post_ids = explode( ',', $atts['gc_game'] );
36
-	} elseif ( ! is_array( $atts['gc_game'] ) ) {
37
-		$post_ids = [ $atts['gc_game'] ];
32
+	} elseif ( is_array( $atts[ 'gc_game' ] ) ) {
33
+		$post_ids = $atts[ 'gc_game' ];
34
+	} elseif ( false !== strpos( (string) $atts[ 'gc_game' ], ',' ) ) {
35
+		$post_ids = explode( ',', $atts[ 'gc_game' ] );
36
+	} elseif ( ! is_array( $atts[ 'gc_game' ] ) ) {
37
+		$post_ids = [ $atts[ 'gc_game' ] ];
38 38
 	}
39 39
 
40 40
 	$games = get_games( $post_ids );
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 			<div <?php post_class( Game\get_game_classes( 'game-single', $game->ID ), $game->ID ); ?> id="game-<?php echo absint( $game->ID ); ?>">
53 53
 
54 54
 				<?php
55
-				echo Display\get_game_title( $game );    // WPCS: XSS ok, already sanitized.
55
+				echo Display\get_game_title( $game ); // WPCS: XSS ok, already sanitized.
56 56
 				echo Display\get_game_info( $game->ID ); // WPCS: XSS ok, already sanitized.
57 57
 				?>
58 58
 
@@ -71,31 +71,31 @@  discard block
 block discarded – undo
71 71
  * @param  array $post_ids  An array of game post IDs.
72 72
  * @return array            An array of Game WP_Post objects.
73 73
  */
74
-function get_games( $post_ids = [] ) {
74
+function get_games( $post_ids = [ ] ) {
75 75
 	if ( empty( $post_ids ) ) {
76 76
 		$post_ids = false;
77 77
 	}
78 78
 
79 79
 	if ( $post_ids ) {
80 80
 		// If we're only displaying select games, don't show the filters.
81
-		add_filter( 'gc_filter_buttons',      '__return_null' );
81
+		add_filter( 'gc_filter_buttons', '__return_null' );
82 82
 		add_filter( 'gc_filter_game_filters', '__return_null' );
83 83
 
84
-		return get_posts([
84
+		return get_posts( [
85 85
 			'posts_per_page' => count( $post_ids ),
86 86
 			'post_type'      => 'gc_game',
87 87
 			'post__in'       => $post_ids,
88 88
 			'orderby'        => 'title',
89 89
 			'order'          => 'ASC',
90
-		]);
90
+		] );
91 91
 	}
92 92
 
93
-	return get_posts([
93
+	return get_posts( [
94 94
 		'posts_per_page' => -1,
95 95
 		'post_type'      => 'gc_game',
96 96
 		'orderby'        => 'title',
97 97
 		'order'          => 'ASC',
98
-	]);
98
+	] );
99 99
 }
100 100
 
101 101
 /**
Please login to merge, or discard this patch.