Skip to content

Commit

Permalink
Merge pull request #76 from Yoast/stories/no-short-array-php-5-2
Browse files Browse the repository at this point in the history
Do not use short array syntax
  • Loading branch information
kraftner authored Oct 12, 2017
2 parents 3fafd9a + f83504f commit 623a206
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function remove( $item ) {
}
$this->items = array_values(
array_diff(
$this->items, [ $item ]
$this->items, array( $item )
)
);
sort( $this->items );
Expand Down

0 comments on commit 623a206

Please sign in to comment.