blob: 034fb0e6685df20cf545fe7850a5d935f9425da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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;
}
|