1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/PqCommandResult.php
2017-02-15 23:33:41 -06:00

24 lines
525 B
PHP

<?php
namespace Amp\Postgres;
use pq;
class PqCommandResult implements CommandResult {
/** @var \pq\Result PostgreSQL result object. */
private $result;
/**
* @param \pq\Result $result PostgreSQL result object.
*/
public function __construct(pq\Result $result) {
$this->result = $result;
}
/**
* @return int Number of rows affected by the INSERT, UPDATE, or DELETE query.
*/
public function affectedRows(): int {
return $this->result->affectedRows;
}
}