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

Commit

Permalink
Merge branch 'master' of https://github.com/zendframework/zf2 into qu…
Browse files Browse the repository at this point in the history
…ickfix/sharedem-type-preference
  • Loading branch information
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .travis/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ for tested in "${testedcomponents[@]}"
do
echo "$tested:"
phpunit -c $testdir/phpunit.xml $testdir/$tested
let "result = $result || $?"
result=$(($result || $?))
done

exit $result
exit $result
2 changes: 1 addition & 1 deletion .travis/tested-components
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Zend/Crypt
Zend/Currency
Zend/Db
Zend/Di
Zend/Docbook
Zend/DocBook
Zend/Dojo
Zend/Dom
Zend/EventManager
Expand Down
10 changes: 5 additions & 5 deletions src/Paginator.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Zend\Db\Table\AbstractRowset as DbAbstractRowset,
Zend\Db\Table\Select as DbTableSelect,
Zend\Db\Sql,
Zend\Filter\Filter,
Zend\Filter\FilterInterface,
Zend\Json\Json,
Zend\Stdlib\ArrayUtils,
Zend\View;
Expand Down Expand Up @@ -127,7 +127,7 @@ class Paginator implements Countable, IteratorAggregate
/**
* Result filter
*
* @var Filter
* @var FilterInterface
*/
protected $_filter = null;

Expand Down Expand Up @@ -573,7 +573,7 @@ public function setCurrentPageNumber($pageNumber)
/**
* Get the filter
*
* @return Filter
* @return FilterInterface
*/
public function getFilter()
{
Expand All @@ -583,10 +583,10 @@ public function getFilter()
/**
* Set a filter chain
*
* @param Filter $filter
* @param FilterInterface $filter
* @return Paginator
*/
public function setFilter(Filter $filter)
public function setFilter(FilterInterface $filter)
{
$this->_filter = $filter;

Expand Down

0 comments on commit 9b1ac2d

Please sign in to comment.