public function DefaultStrategy::hydrate in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-hydrator/src/Strategy/DefaultStrategy.php \Zend\Hydrator\Strategy\DefaultStrategy::hydrate()
Converts the given value so that it can be hydrated by the hydrator.
Parameters
mixed $value The original value.:
Return value
mixed Returns the value that should be hydrated.
Overrides StrategyInterface::hydrate
File
- vendor/
zendframework/ zend-hydrator/ src/ Strategy/ DefaultStrategy.php, line 31
Class
Namespace
Zend\Hydrator\StrategyCode
public function hydrate($value) {
return $value;
}