mirror of
https://github.com/danog/postgres.git
synced 2024-12-12 09:29:57 +01:00
11 lines
236 B
PHP
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);
|
|
}
|