mirror of
https://ghproxy.net/https://github.com/wp-cli/extension-command.git
synced 2026-07-26 12:47:46 +08:00
Co-authored-by: swissspidy <841956+swissspidy@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Hervé THOMAS <rvouill@gmail.com> Co-authored-by: Alain Schlesser <alain.schlesser@gmail.com> Co-authored-by: Pascal Birchler <pascalb@google.com>
14 lines
188 B
PHP
14 lines
188 B
PHP
<?php
|
|
// phpcs:ignoreFile
|
|
|
|
namespace {
|
|
|
|
class Requests_Response {
|
|
/** @var bool */
|
|
public $success;
|
|
/** @var int */
|
|
public $status_code;
|
|
/** @var string */
|
|
public $body;
|
|
}
|
|
}
|