Skip to content

Commit 623a206

Browse files
authored
Merge pull request #76 from Yoast/stories/no-short-array-php-5-2
Do not use short array syntax
2 parents 3fafd9a + f83504f commit 623a206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/configuration/class-yoast-acf-analysis-string-store.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function remove( $item ) {
4747
}
4848
$this->items = array_values(
4949
array_diff(
50-
$this->items, [ $item ]
50+
$this->items, array( $item )
5151
)
5252
);
5353
sort( $this->items );

0 commit comments

Comments
 (0)