Code cleanup

This commit is contained in:
James Cole
2021-03-21 09:15:40 +01:00
parent da1751940e
commit 206845575c
317 changed files with 7418 additions and 7362 deletions

View File

@@ -45,7 +45,7 @@ class PreferenceStoreRequest extends FormRequest
if ('false' === $array['data']) {
$array['data'] = false;
}
if(is_numeric($array['data'])) {
if (is_numeric($array['data'])) {
$array['data'] = (float)$array['data'];
}

View File

@@ -45,7 +45,7 @@ class PreferenceUpdateRequest extends FormRequest
if ('false' === $array['data']) {
$array['data'] = false;
}
if(is_numeric($array['data'])) {
if (is_numeric($array['data'])) {
$array['data'] = (float)$array['data'];
}