Skip to content

Commit

Permalink
OrmExtension: fix initializeMetadata option type
Browse files Browse the repository at this point in the history
  • Loading branch information
mabar committed Feb 9, 2023
1 parent cd7667f commit 345806e
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 345806e

Please sign in to comment.