Skip to content

Commit 7633acb

Browse files
committed
config helper explicit nullable argument
1 parent 98a2a77 commit 7633acb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Helper/ConfigHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1254,7 +1254,7 @@ public function getSearchOnlyAPIKey($storeId = null)
12541254
* @param int|null $storeId
12551255
* @return string
12561256
*/
1257-
public function getIndexPrefix(int $storeId = null): string
1257+
public function getIndexPrefix(?int $storeId = null): string
12581258
{
12591259
return (string) $this->configInterface->getValue(self::INDEX_PREFIX, ScopeInterface::SCOPE_STORE, $storeId);
12601260
}

0 commit comments

Comments
 (0)