1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/CommandResult.php

13 lines
200 B
PHP
Raw Normal View History

2016-12-30 06:21:17 +01:00
<?php
2016-09-14 16:27:39 +02:00
namespace Amp\Postgres;
2017-05-16 06:14:02 +02:00
interface CommandResult {
2016-09-14 16:27:39 +02:00
/**
* Returns the number of rows affected by the query.
*
* @return int
*/
public function affectedRows(): int;
}