Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
robwittman committed Oct 2, 2018
1 parent 7f2c176 commit edb201f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Object/AbstractObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ function ($obj) {
} elseif (is_a($value, AbstractObject::class)) {
$results[$field] = $value->exportData();
} elseif (is_a($value, \DateTime::class)) {
$result[$field] = $value->format(\DateTime::ATOM);
$results[$field] = $value->format(\DateTime::ATOM);
} else {
$results[$field] = $value;
}
Expand Down

0 comments on commit edb201f

Please sign in to comment.