sql/src/Link.php

15 lines
228 B
PHP
Raw Normal View History

2018-06-26 13:14:24 +02:00
<?php
namespace Amp\Sql;
use Amp\Promise;
interface Link extends Executor {
/**
* Starts a transaction on a single connection.
*
* @return \Amp\Promise
*/
public function transaction(): Promise;
}