Skip to content
This repository has been archived by the owner on Nov 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #8 from wakeapp/HUB-368
Browse files Browse the repository at this point in the history
[HUB-368] fix of empty required option
  • Loading branch information
kryakozyablik committed Sep 8, 2020
2 parents 0812788 + 8755dbe commit 96600dd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.4.9] - 2020-09-08
### Fixed
- Fix of empty required option in `AbstractMergeStrategy`

## [0.4.8] - 2020-09-04
### Fixed
- Added support of `symfony/option-resolver` with version `>=5.0`
Expand Down
4 changes: 2 additions & 2 deletions Merger/Strategy/AbstractMergeStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ abstract class AbstractMergeStrategy implements MergeStrategyInterface
/**
* @var array
*/
protected $parameters;
protected $parameters = [];

/**
* @var array
*/
protected $required;
protected $required = [];

/**
* {@inheritdoc}
Expand Down

0 comments on commit 96600dd

Please sign in to comment.