Skip to content

Commit

Permalink
vipcs
Browse files Browse the repository at this point in the history
  • Loading branch information
psorensen committed Aug 6, 2024
1 parent 891354a commit 1bac627
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions includes/Classifai/Helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -678,9 +678,10 @@ function safe_wp_remote_get( string $url, array $args = [] ) {
wp_parse_args(
$args,
[
'timeout' => 20,
'timeout' => 20, // phpcs:ignore

]
); // phpcs:ignore WordPressVIPMinimum.Performance.RemoteRequestTimeout.timeout_timeout.
);

return wp_remote_get( $url, $args ); // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.wp_remote_get_wp_remote_get
return wp_remote_get( $url, $args ); // phpcs:ignore
}

0 comments on commit 1bac627

Please sign in to comment.