blob: 715437a9226d071de33929e903f041f73388dbae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/* Icinga DB Web | (c) 2022 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Data;
use ipl\Orm\ResultSet;
class JsonResultSet extends ResultSet
{
use JsonResultSetUtils;
}
|