mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-02-19 02:27:57 -05:00
15 lines
343 B
PHP
15 lines
343 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 JsonResultSet::stream()} only.
|
|
*/
|
|
final class VolatileJsonResults extends VolatileStateResults
|
|
{
|
|
use JsonResultSetUtils;
|
|
}
|