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 0cacbca commit d64f7b7Copy full SHA for d64f7b7
composer.json
@@ -33,7 +33,7 @@
33
},
34
"require": {
35
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
36
- "php-db/phpdb": "~0.1.0"
+ "php-db/phpdb": "^0.1.0"
37
38
"require-dev": {
39
"ext-mysqli": "*",
test/integration/FixtureLoader/FixtureLoader.php
@@ -7,7 +7,7 @@
7
// phpcs:ignore WebimpressCodingStandard.NamingConventions.Interface.Suffix
8
interface FixtureLoader
9
{
10
- public function createDatabase();
+ public function createDatabase(): void;
11
12
- public function dropDatabase();
+ public function dropDatabase(): void;
13
}
0 commit comments