Skip to content

Commit c0297a3

Browse files
committed
Updated decorator
1 parent c5c9d7c commit c0297a3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Decorator/AbstractConnectionDecorator.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ abstract class AbstractConnectionDecorator extends Connection
1616
public function __construct(Connection $connection)
1717
{
1818
$this->connection = $connection;
19+
parent::__construct(
20+
$connection->getParams(),
21+
$connection->getDriver(),
22+
$connection->getConfiguration(),
23+
$connection->getEventManager()
24+
);
1925
}
2026

2127
public function prepare($prepareString)

0 commit comments

Comments
 (0)