Remove close from Executor, part of TransientResource now

This commit is contained in:
Aaron Piotrowski 2022-06-21 19:36:37 -05:00
parent 261e762d13
commit 3060e7f9f1
No known key found for this signature in database
GPG Key ID: 5B456E6AABA44A63

View File

@ -31,9 +31,4 @@ interface Executor extends TransientResource
* @throws QueryError If the operation fails due to an error in the query (such as a syntax error).
*/
public function execute(string $sql, array $params = []): Result;
/**
* Closes the executor. No further queries may be performed.
*/
public function close(): void;
}