Added some missing type-hints

This commit is contained in:
Roland Häder 2022-06-23 10:18:38 +02:00
parent f889aeffb3
commit 69a68be800
Signed by: roland
GPG Key ID: C82EDE5DDFA0BA77
2 changed files with 4 additions and 4 deletions

View File

@ -788,7 +788,7 @@ class Probe
return $data;
}
public static function pollZot($url, $data)
public static function pollZot(string $url, array $data): array
{
$curlResult = DI::httpClient()->get($url, HttpClientAccept::JSON);
if ($curlResult->isTimeout()) {

View File

@ -80,7 +80,7 @@ class Proxy
* @return string The proxyfied URL or relative path
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public static function proxifyUrl($url, $size = '')
public static function proxifyUrl(string $url, $size = '')
{
if (!DI::config()->get('system', 'proxify_content')) {
return $url;
@ -151,7 +151,7 @@ class Proxy
* @return boolean
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public static function isLocalImage($url)
public static function isLocalImage(string $url): bool
{
if (substr($url, 0, 1) == '/') {
return true;
@ -170,7 +170,7 @@ class Proxy
* @param string $url URL to parse
* @return array Associative array of query string parameters
*/
private static function parseQuery($url)
private static function parseQuery(string $url): array
{
$query = parse_url($url, PHP_URL_QUERY);
$query = html_entity_decode($query);