Newscoop\Doctrine\AdoDbAdapter::isConnected PHP Method

isConnected() public method

Test if is connected
public isConnected ( boolean $forceConnection = false ) : boolean
$forceConnection boolean
return boolean
    public function isConnected($forceConnection = false)
    {
        if ($forceConnection) {
            $this->connection->connect();
        }
        return $this->connection->isConnected();
    }