Skip to content

Commit

Permalink
DbalExtension: allow services to be used as schemaAssetFilter (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gappa authored Jun 10, 2023
1 parent 92fe0e0 commit c0858f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DI/DbalExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function getConfigSchema(): Schema
'configuration' => Expect::structure([
'sqlLogger' => Expect::anyOf(Expect::string(), Expect::array(), Expect::type(Statement::class)),
'resultCache' => Expect::anyOf(Expect::string(), Expect::array(), Expect::type(Statement::class)),
'schemaAssetsFilter' => Expect::anyOf(Expect::string(), Expect::type(Statement::class)),
'schemaAssetsFilter' => Expect::anyOf(Expect::string(), Expect::array(), Expect::type(Statement::class)),
'filterSchemaAssetsExpression' => Expect::string()->nullable(),
'autoCommit' => Expect::bool(true),
]),
Expand Down

0 comments on commit c0858f6

Please sign in to comment.