Skip to content

Commit

Permalink
Rename $args to $options
Browse files Browse the repository at this point in the history
  • Loading branch information
takayukister committed Jun 16, 2024
1 parent 4b25e80 commit 18ff5b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/html-formatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ class WPCF7_HTMLFormatter {
/**
* Constructor.
*/
public function __construct( $args = '' ) {
$this->options = wp_parse_args( $args, array(
public function __construct( $options = '' ) {
$this->options = wp_parse_args( $options, array(
'auto_br' => true,
'auto_indent' => true,
) );
Expand Down

0 comments on commit 18ff5b6

Please sign in to comment.