Skip to content

Commit 27801fe

Browse files
committed
align code with phpdb 0.3.x-dev
Signed-off-by: Joey Smith <jsmith@webinertia.net> Signed-off-by: Joey Smith <jsmith@webinertia.net>
1 parent a396bc1 commit 27801fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Driver/Mysqli/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function setDriver(DriverInterface $driver): DriverAwareInterface
5858

5959
/** @inheritDoc */
6060
#[Override]
61-
public function getCurrentSchema(): string|bool
61+
public function getCurrentSchema(): string|false
6262
{
6363
if (! $this->isConnected()) {
6464
$this->connect();

src/Driver/Pdo/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Connection extends AbstractPdoConnection
2424
* {@inheritDoc}
2525
*/
2626
#[Override]
27-
public function getCurrentSchema(): string|bool
27+
public function getCurrentSchema(): string|false
2828
{
2929
if (! $this->isConnected()) {
3030
$this->connect();

0 commit comments

Comments
 (0)