extension-command/tests/phpstan/scan-files.php
Copilot becf3158e9
Add plugin/theme download subcommands runnable before WordPress load (#527)
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>
2026-06-10 18:04:31 +02:00

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;
}
}