Edit File by line
/home/zeestwma/redstone.../wp-inclu.../Requests/src/Exceptio.../Http
File: Status418.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Exception for 418 I'm A Teapot responses
[2] Fix | Delete
*
[3] Fix | Delete
* @link https://tools.ietf.org/html/rfc2324
[4] Fix | Delete
*
[5] Fix | Delete
* @package Requests\Exceptions
[6] Fix | Delete
*/
[7] Fix | Delete
[8] Fix | Delete
namespace WpOrg\Requests\Exception\Http;
[9] Fix | Delete
[10] Fix | Delete
use WpOrg\Requests\Exception\Http;
[11] Fix | Delete
[12] Fix | Delete
/**
[13] Fix | Delete
* Exception for 418 I'm A Teapot responses
[14] Fix | Delete
*
[15] Fix | Delete
* @link https://tools.ietf.org/html/rfc2324
[16] Fix | Delete
*
[17] Fix | Delete
* @package Requests\Exceptions
[18] Fix | Delete
*/
[19] Fix | Delete
final class Status418 extends Http {
[20] Fix | Delete
/**
[21] Fix | Delete
* HTTP status code
[22] Fix | Delete
*
[23] Fix | Delete
* @var integer
[24] Fix | Delete
*/
[25] Fix | Delete
protected $code = 418;
[26] Fix | Delete
[27] Fix | Delete
/**
[28] Fix | Delete
* Reason phrase
[29] Fix | Delete
*
[30] Fix | Delete
* @var string
[31] Fix | Delete
*/
[32] Fix | Delete
protected $reason = "I'm A Teapot";
[33] Fix | Delete
}
[34] Fix | Delete
[35] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function