connection = $connection; } /** * @return Connection */ public function getConnection() { return $this->connection; } /** * @return Driver */ public function getDriver() { return $this->connection->getDriver(); } /** * @return AbstractPlatform */ public function getDatabasePlatform() { return $this->connection->getDatabasePlatform(); } /** * @return AbstractSchemaManager */ public function getSchemaManager() { return $this->connection->getSchemaManager(); } }