Skip to content

Commit

Permalink
Remove unused helper method
Browse files Browse the repository at this point in the history
  • Loading branch information
greg0ire committed Feb 12, 2021
1 parent 01ca442 commit 4c8831f
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions tests/Doctrine/Tests/ORM/Hydration/HydrationTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace Doctrine\Tests\ORM\Hydration;

use Doctrine\ORM\Query\ParserResult;
use Doctrine\Tests\OrmTestCase;

class HydrationTestCase extends OrmTestCase
Expand All @@ -16,16 +15,4 @@ protected function setUp(): void
parent::setUp();
$this->_em = $this->getTestEntityManager();
}

/** Helper method */
protected function _createParserResult($resultSetMapping, $isMixedQuery = false)
{
$parserResult = new ParserResult();
$parserResult->setResultSetMapping($resultSetMapping);
//$parserResult->setDefaultQueryComponentAlias(key($queryComponents));
//$parserResult->setTableAliasMap($tableToClassAliasMap);
$parserResult->setMixedQuery($isMixedQuery);

return $parserResult;
}
}

0 comments on commit 4c8831f

Please sign in to comment.