*/ interface System { /** * Get the entire system status. * * @return array */ public function getStatus(); /** * Determine if Cachet is allowed to send notifications to users, subscribers or third party tools. * * @return bool */ public function canNotifySubscribers(); /** * Get the cachet version. * * @return string */ public function getVersion(); /** * Get the table prefix. * * @return string */ public function getTablePrefix(); }