sql/src/CommandResult.php
2018-06-29 18:15:39 +08:00

14 lines
195 B
PHP

<?php
namespace Amp\Sql;
interface CommandResult
{
/**
* Returns the number of rows affected by the query.
*
* @return int
*/
public function affectedRows(): int;
}