function userError($sMsg)
{
- throw new Exception($sMsg, 400);
+ throw new \Exception($sMsg, 400);
}
{
$error = error_get_last();
if ($error !== null && $error['type'] === E_ERROR) {
- exception_handler_xml(new Exception($error['message'], 500));
+ exception_handler_xml(new \Exception($error['message'], 500));
}
}
{
$error = error_get_last();
if ($error !== null && $error['type'] === E_ERROR) {
- exception_handler_json(new Exception($error['message'], 500));
+ exception_handler_json(new \Exception($error['message'], 500));
}
}
header('Access-Control-Allow-Headers: '.$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']);
}
}
-if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'OPTIONS') exit;
+if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
+ exit;
+}
-if (CONST_Debug) header('Content-type: text/html; charset=utf-8');
+if (CONST_Debug) {
+ header('Content-type: text/html; charset=utf-8');
+}