lychee/php/Modules/Response.php
2016-02-07 00:16:48 +01:00

25 lines
273 B
PHP

<?php
namespace Lychee\Modules;
final class Response {
public static function warning($msg) {
exit('Warning: ' . $msg);
}
public static function error($msg) {
exit('Error: ' . $msg);
}
public static function json($str) {
exit(json_encode($str));
}
}