Skip to content

Commit 1ae1d8e

Browse files
committed
Fix processorOptions configuration
1 parent 45a1e26 commit 1ae1d8e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Fixed
9+
- Fix `processorOptions` in yaml configuration
810

911
## 2.0.1 - 2018-01-31
1012
### Fixed

src/DependencyInjection/Configuration.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ public function getConfigTreeBuilder()
107107
->prototype('scalar')->end()
108108
->end()
109109
->arrayNode('processorOptions')
110-
->prototype('scalar')->end()
110+
->arrayPrototype()
111+
->prototype('scalar')->end()
112+
->end()
111113
->end()
112114
->end()
113115
->end();

0 commit comments

Comments
 (0)