Skip to content

Commit b664726

Browse files
authored
Add $parametersBound property to the class to avoid deprecation notices
As dynamic properties as not allowed anymore with 8.2, $parametersBound property was causing a deprecation notice "Creation of dynamic property Laminas\Db\Adapter\Driver\Oci8\Statement::$parametersBound is deprecated" Signed-off-by: Olivier MELLINGER <[email protected]>
1 parent b0f51d6 commit b664726

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Adapter/Driver/Oci8/Statement.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ class Statement implements StatementInterface, Profiler\ProfilerAwareInterface
3434

3535
/** @var resource */
3636
protected $resource;
37+
38+
/** @var bool */
39+
protected $parametersBound;
3740

3841
/**
3942
* Is prepared

0 commit comments

Comments
 (0)