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

Commit

Permalink
Merge pull request #6164 in master
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks3w committed Apr 23, 2014
2 parents fd9c96a + 7c62abb commit 86862f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions library/Zend/InputFilter/ArrayInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class ArrayInput extends Input

/**
* @param array $value
* @throws Exception\InvalidArgumentException
* @return Input
*/
public function setValue($value)
Expand Down
1 change: 1 addition & 0 deletions library/Zend/InputFilter/BaseInputFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@ protected function validateInputs(array $inputs, array $data = array())
* each specifying a single input.
*
* @param mixed $name
* @throws Exception\InvalidArgumentException
* @return InputFilterInterface
*/
public function setValidationGroup($name)
Expand Down
1 change: 1 addition & 0 deletions library/Zend/InputFilter/CollectionInputFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class CollectionInputFilter extends InputFilter
* Set the input filter to use when looping the data
*
* @param BaseInputFilter|array|Traversable $inputFilter
* @throws Exception\RuntimeException
* @return CollectionInputFilter
*/
public function setInputFilter($inputFilter)
Expand Down
3 changes: 3 additions & 0 deletions library/Zend/InputFilter/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
namespace Zend\InputFilter;

use Traversable;
use Zend\Filter\Exception;
use Zend\Filter\FilterChain;
use Zend\Stdlib\ArrayUtils;
use Zend\Validator\ValidatorInterface;
Expand Down Expand Up @@ -331,6 +332,7 @@ public function createInputFilter($inputFilterSpecification)
/**
* @param FilterChain $chain
* @param array|Traversable $filters
* @throws Exception\RuntimeException
* @return void
*/
protected function populateFilters(FilterChain $chain, $filters)
Expand Down Expand Up @@ -366,6 +368,7 @@ protected function populateFilters(FilterChain $chain, $filters)
/**
* @param ValidatorChain $chain
* @param array|Traversable $validators
* @throws Exception\RuntimeException
* @return void
*/
protected function populateValidators(ValidatorChain $chain, $validators)
Expand Down

0 comments on commit 86862f3

Please sign in to comment.