You are here

interface HydratorAwareInterface in Zircon Profile 8

Same name in this branch
  1. 8 vendor/zendframework/zend-hydrator/src/HydratorAwareInterface.php \Zend\Hydrator\HydratorAwareInterface
  2. 8 vendor/zendframework/zend-stdlib/src/Hydrator/HydratorAwareInterface.php \Zend\Stdlib\Hydrator\HydratorAwareInterface
Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-hydrator/src/HydratorAwareInterface.php \Zend\Hydrator\HydratorAwareInterface

Hierarchy

Expanded class hierarchy of HydratorAwareInterface

All classes that implement HydratorAwareInterface

1 file declares its use of HydratorAwareInterface
HydratorAwareInterface.php in vendor/zendframework/zend-stdlib/src/Hydrator/HydratorAwareInterface.php

File

vendor/zendframework/zend-hydrator/src/HydratorAwareInterface.php, line 12

Namespace

Zend\Hydrator
View source
interface HydratorAwareInterface {

  /**
   * Set hydrator
   *
   * @param  HydratorInterface $hydrator
   * @return HydratorAwareInterface
   */
  public function setHydrator(HydratorInterface $hydrator);

  /**
   * Retrieve hydrator
   *
   * @return HydratorInterface
   */
  public function getHydrator();

}

Members