🏠 Root
/
home
/
a
/
r
/
t
/
artorgp
/
parankhoit
/
wp-includes
/
Requests
/
Exception
/
HTTP
/
Editing: 504.php
<?php /** * Exception for 504 Gateway Timeout responses * * @package Requests */ /** * Exception for 504 Gateway Timeout responses * * @package Requests */ class Requests_Exception_HTTP_504 extends Requests_Exception_HTTP { /** * HTTP status code * * @var integer */ protected $code = 504; /** * Reason phrase * * @var string */ protected $reason = 'Gateway Timeout'; }
Save
Cancel