Skip to content

Commit

Permalink
Fix PHP str_replace call with parameter #3 is null deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Berger committed Feb 23, 2024
1 parent 80a51e8 commit feb6045
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function addConfiguration(ArrayNodeDefinition $builder)
->cannotBeEmpty()
->end()
->scalarNode('cache_prefix')
->defaultValue(null)
->defaultValue('')
->end()
->arrayNode('client_config')
->isRequired()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function addConfiguration(ArrayNodeDefinition $builder)
->cannotBeEmpty()
->end()
->scalarNode('cache_prefix')
->defaultValue(null)
->defaultValue('')
->end()
->scalarNode('root_url')
->isRequired()
Expand Down

0 comments on commit feb6045

Please sign in to comment.