Skip to content

Commit eb640f0

Browse files
authored
Merge pull request #8 from sasezaki/phpunit10
Test with PHPUnit 10, 11
2 parents 5452d20 + d7f7a96 commit eb640f0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"psr/log": "^2.0 | ^3.0"
1616
},
1717
"require-dev": {
18-
"phpunit/phpunit": "^8.0 | ^9.0",
18+
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.0 || ^11.0",
1919
"squizlabs/php_codesniffer": "^3.6"
2020
},
2121
"autoload": {

src/Test/LoggerInterfaceTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function testLogsAtAllLevels($level, $message)
5454
$this->assertEquals($expected, $this->getLogs());
5555
}
5656

57-
public function provideLevelsAndMessages()
57+
public static function provideLevelsAndMessages()
5858
{
5959
return [
6060
LogLevel::EMERGENCY => [LogLevel::EMERGENCY, 'message of level emergency with context: {user}'],

tests/Test/TestLoggerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function testHasRecord(string $level): void
7979
$this->assertTrue(call_user_func([$logger, $levelMethod.'ThatPasses'], fn (array $record) => $record['message'] === $level.' Message'), $levelMethod.'ThatMatches');
8080
}
8181

82-
public function getLogLevels(): array
82+
public static function getLogLevels(): array
8383
{
8484
return [
8585
['debug'],

0 commit comments

Comments
 (0)