Various fixes and cleanup

This commit is contained in:
James Cole
2023-01-29 15:29:42 +01:00
parent 1cbb644d65
commit 413a4f3d9c
276 changed files with 3119 additions and 2894 deletions

View File

@@ -90,7 +90,7 @@ trait ConvertsDataTypes
if (null === $string) {
return null;
}
if('' === $string) {
if ('' === $string) {
return '';
}
$search = [
@@ -154,7 +154,7 @@ trait ConvertsDataTypes
if (null === $string) {
return null;
}
if('' === $string) {
if ('' === $string) {
return '';
}
return trim($string);