Files
YeePay/lib/Http/HttpStatus.php
2024-04-01 09:54:43 +08:00

16 lines
192 B
PHP

<?php
namespace Yeepay\Yop\Sdk\Http;
class HttpStatus
{
const SC_OK = 200;
const SC_NO_CONTENT = 204;
const SC_INTERNAL_SERVER_ERROR = 500;
const SC_BAD_GATEWAY = 502;
}