Skip to content

Commit

Permalink
zendframework#6869 - removing redundant docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Nov 29, 2014
1 parent 0bf650f commit f8c10d8
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions library/Zend/Stdlib/Hydrator/ObjectProperty.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@ class ObjectProperty extends AbstractHydrator
private static $skippedPropertiesCache = array();

/**
* Extract values from an object
* {@inheritDoc}
*
* Extracts the accessible non-static properties of the given $object.
*
* @param object $object
* @return array
* @throws Exception\BadMethodCallException for a non-object $object
*/
public function extract($object)
Expand Down Expand Up @@ -62,13 +60,12 @@ public function extract($object)
}

/**
* {@inheritDoc}
*
* Hydrate an object by populating public properties
*
* Hydrates an object by setting public properties of the object.
*
* @param array $data
* @param object $object
* @return object
* @throws Exception\BadMethodCallException for a non-object $object
*/
public function hydrate(array $data, $object)
Expand Down

0 comments on commit f8c10d8

Please sign in to comment.