Skip to content

Commit

Permalink
add ability to access private properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
makasim committed Apr 10, 2019
1 parent f8b7134 commit f3fdb60
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -336,4 +336,19 @@ public function getPessimisticLock(): ?PessimisticLock
{
return $this->pessimisticLock;
}

protected function getHydrator(): Hydrator
{
return $this->hydrator;
}

protected function getChangesCollector(): ChangesCollector
{
return $this->changesCollector;
}

protected function getConvertValues(): ConvertValues
{
return $this->convertValues;
}
}

0 comments on commit f3fdb60

Please sign in to comment.