first commit

This commit is contained in:
2024-04-01 09:54:43 +08:00
commit 899d816bc3
795 changed files with 130040 additions and 0 deletions

16
lib/Http/HttpStatus.php Normal file
View File

@@ -0,0 +1,16 @@
<?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;
}