@@ -112,7 +112,7 @@ |
||
112 | 112 | private static function prepareErrorMessage($validatorErrors, $data) |
113 | 113 | { |
114 | 114 | $errors = json_decode(json_encode($validatorErrors, true)); |
115 | - array_walk($errors, function (&$value, $key) use ($data) { |
|
115 | + array_walk($errors, function(&$value, $key) use ($data) { |
|
116 | 116 | array_push($value, "Value: $data[$key]"); |
117 | 117 | }); |
118 | 118 |