- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
457 B
PHP
Executable File
32 lines
457 B
PHP
Executable File
<?php
|
|
/**
|
|
* Exception for 502 Bad Gateway responses
|
|
*
|
|
* @package Requests\Exceptions
|
|
*/
|
|
|
|
namespace WpOrg\Requests\Exception\Http;
|
|
|
|
use WpOrg\Requests\Exception\Http;
|
|
|
|
/**
|
|
* Exception for 502 Bad Gateway responses
|
|
*
|
|
* @package Requests\Exceptions
|
|
*/
|
|
final class Status502 extends Http {
|
|
/**
|
|
* HTTP status code
|
|
*
|
|
* @var integer
|
|
*/
|
|
protected $code = 502;
|
|
|
|
/**
|
|
* Reason phrase
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $reason = 'Bad Gateway';
|
|
}
|