We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b5c5d7 commit 4967b7dCopy full SHA for 4967b7d
test/unit/Adapter/Driver/TestAsset/PdoMock.php
@@ -5,6 +5,7 @@
5
namespace LaminasTest\Db\Adapter\Driver\TestAsset;
6
7
use PDO;
8
+use ReturnTypeWillChange;
9
10
/**
11
* Stub class
@@ -15,14 +16,12 @@ public function __construct()
15
16
{
17
}
18
- /** @return bool */
19
- public function beginTransaction()
+ public function beginTransaction(): bool
20
21
return true;
22
23
24
25
- public function commit()
+ public function commit(): bool
26
27
28
0 commit comments