mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-28 04:36:06 -04:00
16 lines
340 B
PHP
16 lines
340 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/* Icinga DB Web | (c) 2024 Icinga GmbH | GPLv2 */
|
||
|
|
|
||
|
|
namespace Icinga\Module\Icingadb\Data;
|
||
|
|
|
||
|
|
use Icinga\Module\Icingadb\Redis\VolatileStateResults;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @internal This class is supposed to be used by {@see CsvResultSet::stream()} only.
|
||
|
|
*/
|
||
|
|
final class VolatileCsvResults extends VolatileStateResults
|
||
|
|
{
|
||
|
|
use CsvResultSetUtils;
|
||
|
|
}
|