* @author Icinga-Web Team * @package Icinga\Application * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License */ class Livestatus extends AbstractBackend { protected $connection; /** * Backend initialization starts here * * return void */ protected function init() { $this->connection = new Connection($this->config->socket); } /** * Get our Livestatus connection * * return \Icinga\Protocol\Livestatus\Connection */ public function getConnection() { return $this->connection; } }