sql/src/CommandResult.php

14 lines
202 B
PHP
Raw Permalink Normal View History

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