Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge pull request zendframework/zendframework#2369 branch 'hotfix/re…
Browse files Browse the repository at this point in the history
…move-unused-vars'
  • Loading branch information
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Hydrator/Reflection.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ protected static function getReflProperties($input)
$reflClass = new ReflectionClass($input);
$reflProperties = $reflClass->getProperties();

foreach ($reflProperties as $key => $property) {
foreach ($reflProperties as $property) {
$property->setAccessible(true);
self::$reflProperties[$input][$property->getName()] = $property;
}
Expand Down

0 comments on commit c62101c

Please sign in to comment.