Skip to content

Commit 65ab825

Browse files
committed
Fix remaining tests
1 parent 5f9a3ec commit 65ab825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ private function addWorkflowSection(ArrayNodeDefinition $rootNode)
264264
->canBeEnabled()
265265
->beforeNormalization()
266266
->always(function ($v) {
267-
if (true === $v['enabled']) {
267+
if (\is_array($v) && true === $v['enabled']) {
268268
$workflows = $v;
269269
unset($workflows['enabled']);
270270

0 commit comments

Comments
 (0)