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;
|
|
|
|
}
|