codesniffer fixes

This commit is contained in:
2023-10-20 11:10:33 +10:00
parent ba6f67798d
commit 8233afa825
67 changed files with 608 additions and 394 deletions

View File

@@ -58,10 +58,10 @@ function arrayDefaultValue(string $key, array $arr, mixed $value): mixed
/**
* Return if an item exists in an array, case insensitive
*
*
* @param string $val The value to check.
* @param array $arr The array to check.
* @return bool
* @return boolean
*/
function existsInArray(string $val, array $arr): bool
{
@@ -75,4 +75,4 @@ function existsInArray(string $val, array $arr): bool
}
return $exists;
}
}