From 6f69929b2421cf733a5b791dde3c3a2cfa6340cd Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Tue, 23 Jan 2024 16:58:36 +0100 Subject: [PATCH] fix method signatures --- Tests/CI/GithubActionReporterTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/CI/GithubActionReporterTest.php b/Tests/CI/GithubActionReporterTest.php index fb5885808..a35927950 100644 --- a/Tests/CI/GithubActionReporterTest.php +++ b/Tests/CI/GithubActionReporterTest.php @@ -34,7 +34,7 @@ public function testIsGithubActionEnvironment() /** * @dataProvider annotationsFormatProvider */ - public function testAnnotationsFormat(string $type, string $message, ?string $file = null, ?int $line = null, ?int $col = null, string $expected) + public function testAnnotationsFormat(string $type, string $message, ?string $file, ?int $line, ?int $col, string $expected) { $reporter = new GithubActionReporter($buffer = new BufferedOutput());