1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-12 09:29:57 +01:00
postgres/lib/Operation.php
2017-11-17 22:00:52 -06:00

11 lines
236 B
PHP

<?php
namespace Amp\Postgres;
interface Operation {
/**
* @param callable $onDestruct Callback executed when the operation completes or the object is destroyed.
*/
public function onDestruct(callable $onDestruct);
}