Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Jan 8, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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