diff --git a/src/Adapter/Driver/Pdo/AbstractPdo.php b/src/Adapter/Driver/Pdo/AbstractPdo.php index 0e2d93d7..9087757d 100644 --- a/src/Adapter/Driver/Pdo/AbstractPdo.php +++ b/src/Adapter/Driver/Pdo/AbstractPdo.php @@ -31,9 +31,9 @@ abstract class AbstractPdo implements PdoDriverInterface, ProfilerAwareInterface protected ?ProfilerInterface $profiler; public function __construct( - protected readonly AbstractPdoConnection|PDO $connection, - protected readonly StatementInterface&PdoDriverAwareInterface $statementPrototype, - protected readonly ResultInterface $resultPrototype, + protected AbstractPdoConnection|PDO $connection, + protected StatementInterface&PdoDriverAwareInterface $statementPrototype, + protected ResultInterface $resultPrototype, array $features = [], ) { if ($this->connection instanceof PdoDriverAwareInterface) {