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

Commit

Permalink
Merge branch 'hotfix/3130' into develop
Browse files Browse the repository at this point in the history
Forward port zendframework/zendframework#3130

Conflicts:
	README.md
	library/Zend/Version/Version.php
  • Loading branch information
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Validator/PostCodeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,12 @@ public function testServiceClass()
'serviceFalse' => null,
);

$serviceTrue = function($value) use ($params) {
$serviceTrue = function ($value) use ($params) {
$params->serviceTrue = $value;
return true;
};

$serviceFalse = function($value) use ($params) {
$serviceFalse = function ($value) use ($params) {
$params->serviceFalse = $value;
return false;
};
Expand Down

0 comments on commit 215be48

Please sign in to comment.