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

22 lines
387 B
PHP
Raw Permalink Normal View History

2019-11-27 07:19:06 -05:00
<?php
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
2020-03-13 03:38:01 -04:00
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
}
}