Skip to content

Commit

Permalink
Add establishConnection() for interoperability with future versions
Browse files Browse the repository at this point in the history
  • Loading branch information
srjlewis authored Nov 15, 2024
1 parent 7f19b2f commit 280479c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/ExtendedPdo.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,18 @@ public function connect(): void
}
}

/**
*
* alias of connect() for interoperability with future versions Aura.Sql
*
* @return void
*/
public function establishConnection(): void
{
$this->connect();
}


/**
*
* Disconnects from the database.
Expand Down

0 comments on commit 280479c

Please sign in to comment.