You are here

interface HydrationInterface in Zircon Profile 8

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

Hierarchy

Expanded class hierarchy of HydrationInterface

All classes that implement HydrationInterface

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

File

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

Namespace

Zend\Hydrator
View source
interface HydrationInterface {

  /**
   * Hydrate $object with the provided $data.
   *
   * @param  array $data
   * @param  object $object
   * @return object
   */
  public function hydrate(array $data, $object);

}

Members

Namesort descending Modifiers Type Description Overrides
HydrationInterface::hydrate public function Hydrate $object with the provided $data. 6