PhpBench\Extensions\Dbal\Tests\Functional\DbalTestCase::getConnection PHP Method

getConnection() protected method

protected getConnection ( )
    protected function getConnection()
    {
        if ($this->connection) {
            return $this->connection;
        }
        $this->connection = DriverManager::getConnection(['driver' => 'pdo_sqlite', 'memory' => true]);
        return $this->connection;
    }