1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-07 21:56:33 +02:00

feat(helpers): update getUriString helper

This commit is contained in:
Awilum
2022-04-14 12:05:23 +03:00
parent 6268807b38
commit 089a6bd053

View File

@@ -200,7 +200,7 @@ if (! function_exists('getUriString')) {
*/
function getUriString(): string
{
return $_SERVER['REQUEST_URI'];
return $_SERVER['REQUEST_URI'] ?? '';
}
}