Skip to content

Commit f3fdb60

Browse files
committed
add ability to access private properties.
1 parent f8b7134 commit f3fdb60

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/Storage.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,4 +336,19 @@ public function getPessimisticLock(): ?PessimisticLock
336336
{
337337
return $this->pessimisticLock;
338338
}
339+
340+
protected function getHydrator(): Hydrator
341+
{
342+
return $this->hydrator;
343+
}
344+
345+
protected function getChangesCollector(): ChangesCollector
346+
{
347+
return $this->changesCollector;
348+
}
349+
350+
protected function getConvertValues(): ConvertValues
351+
{
352+
return $this->convertValues;
353+
}
339354
}

0 commit comments

Comments
 (0)