Strict comparison

This commit is contained in:
Ben
2018-10-03 13:59:48 +02:00
parent d7ca7e4cd8
commit 84d0e44a08

View File

@@ -60,7 +60,7 @@ class NewFinTSJobHandler implements FinTSConfigurationInterface
$incomplete = false;
foreach ($config as $value) {
$incomplete = $value == '' or $incomplete;
$incomplete = $value === '' or $incomplete;
}
if ($incomplete) {
return new MessageBag([trans('import.incomplete_fints_form')]);