Skip to content

Commit b1b8ff8

Browse files
author
Shawn Hooper
committed
Fixed tabs vs spaces linting errors
1 parent 2cdde47 commit b1b8ff8

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

wpengine-phpcompat.php

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function get_phpversions() {
117117
);
118118

119119
if ( version_compare( phpversion(), '5.3', '>=' ) ) {
120-
$versions = array( 'PHP 7.3' => '7.3' ) + $versions;
120+
$versions = array( 'PHP 7.3' => '7.3' ) + $versions;
121121
}
122122

123123
$old_versions = array( '5.6', '5.5', '5.4', '5.3' );
@@ -203,13 +203,13 @@ public function check_status() {
203203
$active_job = false;
204204

205205
$jobs = get_posts(
206-
array(
207-
'posts_per_page' => -1,
208-
'post_type' => 'wpephpcompat_jobs',
209-
'orderby' => 'title',
210-
'order' => 'ASC',
211-
)
212-
);
206+
array(
207+
'posts_per_page' => -1,
208+
'post_type' => 'wpephpcompat_jobs',
209+
'orderby' => 'title',
210+
'order' => 'ASC',
211+
)
212+
);
213213

214214
if ( 0 < count( $jobs ) ) {
215215
$active_job = $jobs[0]->post_title;
@@ -311,16 +311,16 @@ public function clean_up() {
311311
*/
312312
public function create_job_queue() {
313313
register_post_type(
314-
'wpephpcompat_jobs',
315-
array(
316-
'labels' => array(
317-
'name' => __( 'Jobs', 'php-compatibility-checker' ),
318-
'singular_name' => __( 'Job', 'php-compatibility-checker' ),
319-
),
320-
'public' => false,
321-
'has_archive' => false,
322-
)
323-
);
314+
'wpephpcompat_jobs',
315+
array(
316+
'labels' => array(
317+
'name' => __( 'Jobs', 'php-compatibility-checker' ),
318+
'singular_name' => __( 'Job', 'php-compatibility-checker' ),
319+
),
320+
'public' => false,
321+
'has_archive' => false,
322+
)
323+
);
324324
}
325325

326326
/**

0 commit comments

Comments
 (0)