mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-02-03 20:40:15 -05:00
12 lines
191 B
PHP
12 lines
191 B
PHP
<?php
|
|
|
|
/* Icinga DB Web | (c) 2022 Icinga GmbH | GPLv2 */
|
|
|
|
namespace Icinga\Module\Icingadb\Data;
|
|
|
|
use ipl\Orm\ResultSet;
|
|
|
|
class CsvResultSet extends ResultSet
|
|
{
|
|
use CsvResultSetUtils;
|
|
}
|