Skip to content

Commit

Permalink
add typehint and parameter on extension load method
Browse files Browse the repository at this point in the history
  • Loading branch information
goetas committed Mar 18, 2020
1 parent c9388fc commit e89a4e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DependencyInjection/DoctrineMigrationsExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class DoctrineMigrationsExtension extends Extension
/**
* Responds to the migrations configuration parameter.
*
* @param string[][] $configs
* @param array<string, array<string, array<string, string>|string>>> $configs
*/
public function load(array $configs, ContainerBuilder $container) : void
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function testForwardCompatibilityLayer() : void
'table_storage' => [
'table_name' => 'doctrine_migration_versions_test',
'version_column_name' => 'doctrine_migration_column_test',
'version_column_length' => 2000,
'version_column_length' => '2000',
'executed_at_column_name' => 'doctrine_migration_executed_at_column_test',
],
],
Expand Down

0 comments on commit e89a4e5

Please sign in to comment.