]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/Proxy.php
Merge pull request #11728 from nupplaphil/feat/split_db_definitions
[friendica.git] / src / Util / Proxy.php
index b63fd6ed14d77eba15ee9bab5b135f5556e3847f..ed0ae8affce648a21441503e7b0ce2c36de6274a 100644 (file)
@@ -76,11 +76,10 @@ class Proxy
         *
         * @param string $url       The URL to proxyfy
         * @param string $size      One of the Proxy::SIZE_* constants
-        *
         * @return string The proxyfied URL or relative path
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function proxifyUrl(string $url, string $size = '')
+       public static function proxifyUrl(string $url, string $size = ''): string
        {
                if (!DI::config()->get('system', 'proxify_content')) {
                        return $url;
@@ -133,11 +132,10 @@ class Proxy
         * proxy storage directory.
         *
         * @param string $html Un-proxified HTML code
-        *
         * @return string Proxified HTML code
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function proxifyHtml($html)
+       public static function proxifyHtml(string $html): string
        {
                $html = str_replace(Strings::normaliseLink(DI::baseUrl()) . '/', DI::baseUrl() . '/', $html);
 
@@ -187,7 +185,7 @@ class Proxy
         * @return string Proxified HTML image tag
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       private static function replaceUrl(array $matches)
+       private static function replaceUrl(array $matches): string
        {
                // if the picture seems to be from another picture cache then take the original source
                $queryvar = self::parseQuery($matches[2]);