mirror of
https://gh.wpcy.net/https://github.com/wp-cli/i18n-command.git
synced 2026-06-11 01:34:23 +08:00
16 lines
227 B
PHP
16 lines
227 B
PHP
<?php
|
|
// phpcs:ignoreFile
|
|
|
|
namespace {
|
|
|
|
define( 'WP_CLI_VERSION', '2.x.x' );
|
|
|
|
class Requests_Response {
|
|
/** @var bool */
|
|
public $success;
|
|
/** @var int */
|
|
public $status_code;
|
|
/** @var string */
|
|
public $body;
|
|
}
|
|
}
|