public function StrategyChain::hydrate in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-hydrator/src/Strategy/StrategyChain.php \Zend\Hydrator\Strategy\StrategyChain::hydrate()
Converts the given value so that it can be hydrated by the hydrator.
Parameters
mixed $value The original value.:
array $data (optional) The original data for context.:
Return value
mixed Returns the value that should be hydrated.
Overrides StrategyInterface::hydrate
File
- vendor/
zendframework/ zend-hydrator/ src/ Strategy/ StrategyChain.php, line 65
Class
Namespace
Zend\Hydrator\StrategyCode
public function hydrate($value) {
foreach ($this->hydrationStrategies as $strategy) {
$value = $strategy
->hydrate($value);
}
return $value;
}