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