icingadb-web/library/Icingadb/Common/Database.php

21 lines
328 B
PHP
Raw Permalink Normal View History

2019-11-27 07:19:06 -05:00
<?php
2020-03-13 03:38:01 -04:00
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
2019-11-27 07:19:06 -05:00
namespace Icinga\Module\Icingadb\Common;
use ipl\Sql\Connection;
trait Database
{
/**
* Get the connection to the Icinga database
*
* @return Connection
*/
public function getDb(): Connection
2019-11-27 07:19:06 -05:00
{
return Backend::getDb();
2019-11-27 07:19:06 -05:00
}
}