/
githubmirror
/
ydb-php-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-php-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/QueryStats/OperationStats.php
28 строк
483 B
Илья
Remove Protobuf dependency
29 авг 2023, 13:08
29 авг 2023, 13:08
adf3167
Код
Авторство
О чём код?
<?php namespace YdbPlatform\Ydb\QueryStats; class OperationStats { public function __construct(\Ydb\TableStats\OperationStats $operationStats) { $this->operationStats = $operationStats; } /** * @return int|string */ public function getRows() { return $this->operationStats->getRows(); } /** * @return int|string */ public function getBytes() { return $this->operationStats->getBytes(); } }