Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'fix-ResultType' of https://github.com/lowtower/zend-db
Browse files Browse the repository at this point in the history
…into lowtower-fix-ResultType
  • Loading branch information
ezimuel committed Aug 8, 2018
2 parents 9d758f6 + becebb1 commit 02b1ea4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/TableGateway/AbstractTableGateway.php
Expand Up @@ -10,7 +10,6 @@
namespace Zend\Db\TableGateway;

use Zend\Db\Adapter\AdapterInterface;
use Zend\Db\ResultSet\ResultSet;
use Zend\Db\ResultSet\ResultSetInterface;
use Zend\Db\Sql\Delete;
use Zend\Db\Sql\Insert;
Expand Down Expand Up @@ -158,7 +157,7 @@ public function getFeatureSet()
/**
* Get select result prototype
*
* @return ResultSet
* @return ResultSetInterface
*/
public function getResultSetPrototype()
{
Expand All @@ -177,7 +176,7 @@ public function getSql()
* Select
*
* @param Where|\Closure|string|array $where
* @return ResultSet
* @return ResultSetInterface
*/
public function select($where = null)
{
Expand All @@ -199,7 +198,6 @@ public function select($where = null)
/**
* @param Select $select
* @return ResultSetInterface
* @throws \RuntimeException
*/
public function selectWith(Select $select)
{
Expand All @@ -211,7 +209,7 @@ public function selectWith(Select $select)

/**
* @param Select $select
* @return ResultSet
* @return ResultSetInterface
* @throws Exception\RuntimeException
*/
protected function executeSelect(Select $select)
Expand Down

0 comments on commit 02b1ea4

Please sign in to comment.