Skip to content

Commit

Permalink
Merge pull request #609 from mabar/fix-extension-config
Browse files Browse the repository at this point in the history
OrmExtension: fix initializeMetadata option type
  • Loading branch information
hrach committed Feb 9, 2023
2 parents cd7667f + 345806e commit 1ff6990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bridges/NetteDI/OrmExtension.php
Expand Up @@ -43,7 +43,7 @@ public function getConfigSchema(): Schema
return Expect::structure([
'model' => Expect::string()->default(Model::class),
'repositoryFinder' => Expect::string()->default(PhpDocRepositoryFinder::class),
'initializeMetadata' => Expect::string()->default(false),
'initializeMetadata' => Expect::bool()->default(false),
]);
}

Expand Down

0 comments on commit 1ff6990

Please sign in to comment.