Skip to content

Commit

Permalink
Merge pull request #112 from wp-cli/2nd-arg
Browse files Browse the repository at this point in the history
Remove second argument to `WP_CLI::success()`
  • Loading branch information
schlessera authored Dec 5, 2018
2 parents 9a8a46a + 8efb2ca commit 3050d9c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/MakeJsonCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ public function __invoke( $args, $assoc_args ) {
}
}


WP_CLI::success( sprintf( 'Created %d %s.', $result_count, Utils\pluralize( 'file', $result_count) ), 'make-json' );
WP_CLI::success( sprintf( 'Created %d %s.', $result_count, Utils\pluralize( 'file', $result_count) ) );
}

/**
Expand Down

0 comments on commit 3050d9c

Please sign in to comment.