Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Nov 19, 2023
1 parent ae3d72b commit a06991f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/PostgresExecutor.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ interface PostgresExecutor extends Executor, PostgresQuoter
/**
* @return PostgresResult Result object specific to this library.
*/
// public function query(string $sql): PostgresResult;
public function query(string $sql): PostgresResult;

/**
* @return PostgresStatement Statement object specific to this library.
*/
// public function prepare(string $sql): PostgresStatement;
public function prepare(string $sql): PostgresStatement;

/**
* @return PostgresResult Result object specific to this library.
*/
// public function execute(string $sql, array $params = []): PostgresResult;
public function execute(string $sql, array $params = []): PostgresResult;

/**
* @return PostgresTransaction Transaction object specific to this library.
*/
// public function beginTransaction(): PostgresTransaction;
public function beginTransaction(): PostgresTransaction;

/**
* @param non-empty-string $channel Channel name.
Expand Down
2 changes: 1 addition & 1 deletion src/PostgresLink.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
/**
* @extends Link<PostgresResult, PostgresStatement, PostgresTransaction>
*/
interface PostgresLink extends Link, PostgresQuoter
interface PostgresLink extends Link, PostgresReceiver
{
}

0 comments on commit a06991f

Please sign in to comment.