Add type-hint to debug null value fatal error

- Part of https://github.com/friendica/friendica/issues/7675#issuecomment-566076500
This commit is contained in:
Hypolite Petovan 2019-12-16 11:05:08 -05:00
parent 482af202f5
commit 77e00f11a7
2 changed files with 2 additions and 2 deletions

View File

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

View File

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