2016-02-06 23:16:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Lychee\Modules;
|
|
|
|
|
|
|
|
final class Response {
|
|
|
|
|
|
|
|
public static function warning($msg) {
|
|
|
|
|
2016-03-24 20:41:34 +00:00
|
|
|
exit(json_encode('Warning: ' . $msg));
|
2016-02-06 23:16:48 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function error($msg) {
|
|
|
|
|
2016-03-24 20:41:34 +00:00
|
|
|
exit(json_encode('Error: ' . $msg));
|
2016-02-06 23:16:48 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-03-24 17:23:19 +00:00
|
|
|
public static function json($str, $options = 0) {
|
2016-02-06 23:16:48 +00:00
|
|
|
|
2016-03-24 17:23:19 +00:00
|
|
|
exit(json_encode($str, $options));
|
2016-02-06 23:16:48 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|