Skip to content

Commit

Permalink
Fix implicitly-required parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Jan 23, 2024
1 parent de9a8d9 commit dbdf6ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/CI/GithubActionReporterTest.php
Expand Up @@ -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());

Expand Down

0 comments on commit dbdf6ad

Please sign in to comment.