Skip to content

Commit

Permalink
chore: add missing type in method prototype (#8088)
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Jun 16, 2024
1 parent 5f130a1 commit e23c841
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@ final class TrailingCommaInMultilineFixerTest extends AbstractFixerTestCase
*
* @dataProvider provideInvalidConfigurationCases
*
* @param mixed $exceptionMessage
* @param mixed $configuration
* @param array<string, mixed> $configuration
*/
public function testInvalidConfiguration($exceptionMessage, $configuration): void
public function testInvalidConfiguration(string $exceptionMessage, array $configuration): void
{
$this->expectException(InvalidForEnvFixerConfigurationException::class);
$this->expectExceptionMessage($exceptionMessage);
Expand Down

0 comments on commit e23c841

Please sign in to comment.