Skip to content

Commit 0afefe2

Browse files
authored
fix: implicitly marking parameter as nullable
1 parent 26aa899 commit 0afefe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Support/Helpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @param string|null $path
66
* @return string
77
*/
8-
function home_path(string $path = null) : string
8+
function home_path(string|null $path = null) : string
99
{
1010
$home = getenv('HOME');
1111

0 commit comments

Comments
 (0)