Skip to content

Commit d64f7b7

Browse files
committed
fix: semver
fix: fixture loader return types in UT Signed-off-by: Julien Guittard <julien.guittard@me.com>
1 parent 0cacbca commit d64f7b7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"require": {
3535
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
36-
"php-db/phpdb": "~0.1.0"
36+
"php-db/phpdb": "^0.1.0"
3737
},
3838
"require-dev": {
3939
"ext-mysqli": "*",

test/integration/FixtureLoader/FixtureLoader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// phpcs:ignore WebimpressCodingStandard.NamingConventions.Interface.Suffix
88
interface FixtureLoader
99
{
10-
public function createDatabase();
10+
public function createDatabase(): void;
1111

12-
public function dropDatabase();
12+
public function dropDatabase(): void;
1313
}

0 commit comments

Comments
 (0)