Skip to content

Commit

Permalink
Removes unneeded ()
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsoo committed Nov 25, 2024
1 parent bba6bd8 commit e363c40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function get_current_scores( array $readability_scores, Content_Type $con
)
);
//phpcs:enable
\set_transient( $transient_name, WPSEO_Utils::format_json_encode( $current_scores ), ( \MINUTE_IN_SECONDS ) );
\set_transient( $transient_name, WPSEO_Utils::format_json_encode( $current_scores ), \MINUTE_IN_SECONDS );
return $current_scores;

}
Expand Down Expand Up @@ -92,7 +92,7 @@ public function get_current_scores( array $readability_scores, Content_Type $con
)
);
//phpcs:enable
\set_transient( $transient_name, WPSEO_Utils::format_json_encode( $current_scores ), ( \MINUTE_IN_SECONDS ) );
\set_transient( $transient_name, WPSEO_Utils::format_json_encode( $current_scores ), \MINUTE_IN_SECONDS );
return $current_scores;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function get_current_scores( array $seo_scores, Content_Type $content_typ
)
);
//phpcs:enable
\set_transient( $transient_name, WPSEO_Utils::format_json_encode( $current_scores ), ( \MINUTE_IN_SECONDS ) );
\set_transient( $transient_name, WPSEO_Utils::format_json_encode( $current_scores ), \MINUTE_IN_SECONDS );
return $current_scores;

}
Expand Down Expand Up @@ -94,7 +94,7 @@ public function get_current_scores( array $seo_scores, Content_Type $content_typ
)
);
//phpcs:enable
\set_transient( $transient_name, WPSEO_Utils::format_json_encode( $current_scores ), ( \MINUTE_IN_SECONDS ) );
\set_transient( $transient_name, WPSEO_Utils::format_json_encode( $current_scores ), \MINUTE_IN_SECONDS );
return $current_scores;
}

Expand Down

0 comments on commit e363c40

Please sign in to comment.