14 lines
332 B
PHP
14 lines
332 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Args;
|
|
|
|
/**
|
|
* Arguments for the `wp_safe_remote_post()` function in WordPress.
|
|
*
|
|
* @link https://developer.wordpress.org/reference/functions/wp_safe_remote_post/
|
|
* @link https://developer.wordpress.org/reference/classes/wp_http/request/
|
|
*/
|
|
class wp_safe_remote_post extends WP_Http {}
|