Expand search.

This commit is contained in:
James Cole
2020-08-22 12:24:01 +02:00
parent d69934ca8f
commit ffca935ced
21 changed files with 3514 additions and 322 deletions

View File

@@ -52,6 +52,18 @@ if (!function_exists('envNonEmpty')) {
}
}
if (!function_exists('str_is_equal')) {
/**
* @param string $left
* @param string $right
* @return bool
*/
function str_is_equal(string $left, string $right): bool
{
return $left === $right;
}
}
$app = new Illuminate\Foundation\Application(
realpath(__DIR__ . '/../')
);