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

Commit

Permalink
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 9e2c9d5

Please sign in to comment.