Merge pull request #7962 from MrPetovan/bug/fatal-errors

Add type-hint to debug null value fatal error
2022.09-rc
Tobias Diekershoff 2019-12-16 17:31:36 +01:00 zatwierdzone przez GitHub
commit 73c3e8a416
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -383,7 +383,7 @@ class App
* @deprecated 2019.09 - Use BaseURL->remove() instead
* @see BaseURL::remove()
*/
public function removeBaseURL($origURL)
public function removeBaseURL(string $origURL)
{
return $this->baseURL->remove($origURL);
}

Wyświetl plik

@ -41,7 +41,7 @@ class System extends BaseObject
* @return string The cleaned url
* @throws \Exception
*/
public static function removedBaseUrl($orig_url)
public static function removedBaseUrl(string $orig_url)
{
return self::getApp()->removeBaseURL($orig_url);
}