chore: fix various small sonacloud issues to see if the actions run correctly.

This commit is contained in:
James Cole
2023-05-29 14:17:10 +02:00
parent 023a3fdade
commit 6ed5892cf9
5 changed files with 10 additions and 11 deletions

View File

@@ -52,14 +52,14 @@ if (!function_exists('envNonEmpty')) {
}
}
if (!function_exists('str_is_equal')) {
if (!function_exists('stringIsEqual')) {
/**
* @param string $left
* @param string $right
*
* @return bool
*/
function str_is_equal(string $left, string $right): bool
function stringIsEqual(string $left, string $right): bool
{
return $left === $right;
}