Skip to content
This repository has been archived by the owner on Dec 7, 2018. It is now read-only.

Return type of DefaultConnection::createQueryTable should match return type of Connection::createQueryTable #216

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Database/DefaultConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
use PHPUnit\DbUnit\Database\Metadata\AbstractMetadata;
use PHPUnit\DbUnit\Database\Metadata\Metadata;
use PHPUnit\DbUnit\DataSet\IDataSet;
use PHPUnit\DBUnit\DataSet\ITable;
use PHPUnit\DbUnit\DataSet\QueryTable;

/**
Expand Down Expand Up @@ -101,7 +102,7 @@ public function createDataSet(array $tableNames = null)
* @param string $resultName
* @param string $sql
*
* @return Table
* @return ITable
*/
public function createQueryTable($resultName, $sql)
{
Expand Down