More biz to help simfiles make it. Better error reporting service.
[rock.divinelegy.git] / Services / IStatusReporter.php
1 <?php
2
3 namespace Services;
4
5 use Exception;
6
7 interface IStatusReporter
8 {
9 public function success($message = null);
10 public function error($message = null);
11 public function addMessage($message);
12 public static function exception(Exception $exception);
13 public function json();
14 }