Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request zendframework/zendframework#4599 from radnan/patch-1
Browse files Browse the repository at this point in the history
[InputFilter] Input merge should copy over the "continue_if_empty" flag
  • Loading branch information
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Input.php
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ public function merge(InputInterface $input)
{
$this->setAllowEmpty($input->allowEmpty());
$this->setBreakOnFailure($input->breakOnFailure());
$this->setContinueIfEmpty($input->continueIfEmpty());
$this->setErrorMessage($input->getErrorMessage());
$this->setName($input->getName());
$this->setRequired($input->isRequired());
Expand Down

0 comments on commit 0ffa289

Please sign in to comment.