diff --git a/app/common/Ideal/Repository.php b/app/common/Ideal/Repository.php index c8afff6..1014be5 100644 --- a/app/common/Ideal/Repository.php +++ b/app/common/Ideal/Repository.php @@ -24,6 +24,11 @@ abstract class Repository implements Define\Repository return $this; } + public function getConnection(): Define\Connection + { + return $this->connection; + } + public function load(array $data_row): Define\Model { $model = $this->create($data_row);