Skip to content

Commit

Permalink
Fixed Xdebug issue in combination with isConnected() #10836
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Jun 29, 2017
1 parent a9eb221 commit 5364845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Database/Driver.php
Expand Up @@ -386,7 +386,7 @@ public function __destruct()
public function __debugInfo()
{
return [
'connected' => $this->isConnected()
'connected' => $this->_connection !== null
];
}
}

0 comments on commit 5364845

Please sign in to comment.