Skip to content

Commit

Permalink
Merge pull request #24 from rekalogika:chore/cs-fix
Browse files Browse the repository at this point in the history
chore: CS fix
  • Loading branch information
priyadi committed Feb 20, 2024
2 parents 7c09878 + e2953e4 commit 8edee5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Transformer/Util/ReaderWriter.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ public function readSourceProperty(
} elseif ($mode === ReadMode::DynamicProperty) {
if (isset($source->{$accessorName})) {
return $source->{$accessorName};
} else {
return null;
}
return null;

}
return null;
} catch (\Error $e) {
Expand Down

0 comments on commit 8edee5b

Please sign in to comment.