You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
433 B
PHP
14 lines
433 B
PHP
<?php
|
|
class Errors {
|
|
const E_SUCCESS = "E_SUCCESS";
|
|
const E_UNAUTHORIZED = "E_UNAUTHORIZED";
|
|
const E_UNKNOWN_METHOD = "E_UNKNOWN_METHOD";
|
|
const E_UNKNOWN_PLUGIN = "E_UNKNOWN_PLUGIN";
|
|
const E_SCHEMA_MISMATCH = "E_SCHEMA_MISMATCH";
|
|
const E_URL_SCHEME_MISMATCH = "E_URL_SCHEME_MISMATCH";
|
|
|
|
static function to_json(string $code, array $params = []) {
|
|
return json_encode(["error" => ["code" => $code, "params" => $params]]);
|
|
}
|
|
}
|