Remove array merge

This commit is contained in:
Mike Jolley 2017-04-28 17:09:39 +01:00
parent 4b0fff3437
commit b0bba8c853
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ class WC_CLI_Runner {
'zone_id' => __( 'Zone ID.', 'woocommerce' ),
);
$rest_command->set_supported_ids( $supported_ids );
$positional_args = array_merge( array( 'id' ), array_keys( $supported_ids ) );
$positional_args = array_keys( $supported_ids );
$parent = "wc {$route_data['schema']['title']}";
$supported_commands = array();