Skip to content
This repository has been archived by the owner on Jan 29, 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
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
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/Processor/Filter.php
Expand Up @@ -23,7 +23,7 @@
use Zend\Config\Config,
Zend\Config\Processor,
Zend\Config\Exception,
Zend\Filter\Filter as ZendFilter,
Zend\Filter\FilterInterface as ZendFilter,
\Traversable,
\ArrayObject;

Expand All @@ -36,14 +36,14 @@
class Filter implements Processor
{
/**
* @var \Zend\Filter\Filter
* @var \Zend\Filter\FilterInterface
*/
protected $filter;

/**
* Filter all config values using the supplied Zend\Filter
*
* @param \Zend\Filter\Filter $filter
* @param \Zend\Filter\FilterInterface $filter
* @return \Zend\Config\Processor\Filter
*/
public function __construct(ZendFilter $filter)
Expand All @@ -52,15 +52,15 @@ public function __construct(ZendFilter $filter)
}

/**
* @return \Zend\Filter\Filter
* @return \Zend\Filter\FilterInterface
*/
public function getFilter()
{
return $this->filter;
}

/**
* @param \Zend\Filter\Filter $filter
* @param \Zend\Filter\FilterInterface $filter
*/
public function setFilter(ZendFilter $filter)
{
Expand Down

0 comments on commit 2003fce

Please sign in to comment.