interface HydratingIteratorInterface in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/zendframework/zend-hydrator/src/Iterator/HydratingIteratorInterface.php \Zend\Hydrator\Iterator\HydratingIteratorInterface
- 8.0 vendor/zendframework/zend-stdlib/src/Hydrator/Iterator/HydratingIteratorInterface.php \Zend\Stdlib\Hydrator\Iterator\HydratingIteratorInterface
Same name and namespace in other branches
- 8 vendor/zendframework/zend-hydrator/src/Iterator/HydratingIteratorInterface.php \Zend\Hydrator\Iterator\HydratingIteratorInterface
Hierarchy
- interface \Zend\Hydrator\Iterator\HydratingIteratorInterface extends \Iterator
Expanded class hierarchy of HydratingIteratorInterface
All classes that implement HydratingIteratorInterface
1 file declares its use of HydratingIteratorInterface
- HydratingIteratorInterface.php in vendor/
zendframework/ zend-stdlib/ src/ Hydrator/ Iterator/ HydratingIteratorInterface.php
File
- vendor/
zendframework/ zend-hydrator/ src/ Iterator/ HydratingIteratorInterface.php, line 15
Namespace
Zend\Hydrator\IteratorView source
interface HydratingIteratorInterface extends Iterator {
/**
* This sets the prototype to hydrate.
*
* This prototype can be the name of the class or the object itself;
* iteration will clone the object.
*
* @param string|object $prototype
*/
public function setPrototype($prototype);
/**
* Sets the hydrator to use during iteration.
*
* @param HydratorInterface $hydrator
*/
public function setHydrator(HydratorInterface $hydrator);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
HydratingIteratorInterface:: |
public | function | Sets the hydrator to use during iteration. | 1 |
HydratingIteratorInterface:: |
public | function | This sets the prototype to hydrate. | 1 |