Skip to content

Commit

Permalink
Fix PHPStan errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Myks92 authored and greg0ire committed Apr 22, 2024
1 parent 3fcc89c commit c8ca5a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/Tools/Console/Command/DiffCommandTest.php
Expand Up @@ -142,7 +142,7 @@ public function testExecutedUnavailableMigrationsCancel(): void
self::assertSame(3, $statusCode);
}

/** @return array<string, int|null, array<string[]>> */
/** @return array<string, array<int, int|string|null>> */
public static function getNamespaceSelected(): array
{
return [
Expand Down
2 changes: 1 addition & 1 deletion tests/Tools/Console/Command/DumpSchemaCommandTest.php
Expand Up @@ -101,7 +101,7 @@ public function testExecute(): void
);
}

/** @return array<string, int|null, array<string[]>> */
/** @return array<string, array<int, int|string|null>> */
public static function getNamespaceSelected(): array
{
return [
Expand Down
2 changes: 1 addition & 1 deletion tests/Tools/Console/Command/GenerateCommandTest.php
Expand Up @@ -64,7 +64,7 @@ public function testExecute(): void
], array_map(trim(...), explode("\n", trim($output))));
}

/** @return array<string, int|null, array<string[]>> */
/** @return array<string, array<int, int|string|null>> */
public static function getNamespaceSelected(): array
{
return [
Expand Down

0 comments on commit c8ca5a2

Please sign in to comment.