1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-16 03:17:14 +01:00
postgres/lib/TupleResult.php
Aaron Piotrowski caf829a48c Initial commit
2016-09-14 09:27:39 -05:00

15 lines
292 B
PHP

<?php declare(strict_types = 1);
namespace Amp\Postgres;
use Amp\Observer;
abstract class TupleResult extends Observer implements Result {
/**
* Returns the number of fields (columns) in each row.
*
* @return int
*/
abstract public function numFields(): int;
}