sql/src/CommandResult.php

12 lines
194 B
PHP
Raw Normal View History

2018-06-26 13:14:24 +02:00
<?php
namespace Amp\Sql;
interface CommandResult {
/**
* Returns the number of rows affected by the query.
*
* @return int
*/
public function affectedRows(): int;
}