]> git.mxchange.org Git - friendica.git/commitdiff
Space for the rescue. ;-)
authorRoland Häder <roland@mxchange.org>
Fri, 24 Jun 2022 01:44:52 +0000 (03:44 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 25 Jun 2022 14:48:35 +0000 (16:48 +0200)
src/Content/Text/BBCode.php
src/Content/Text/Plaintext.php
src/Model/Contact.php

index c3e255a4d97de0844c089629ee4220d8410fee55..bfc1dce188163600bc85f4fb69fb7e8cc3ef8c0c 100644 (file)
@@ -1086,7 +1086,7 @@ class BBCode
         * @param integer $uriid
         * @return string
         */
-       private static function convertImages(string $text, int $simplehtml, int $uriid = 0):string
+       private static function convertImages(string $text, int $simplehtml, int $uriid = 0): string
        {
                DI::profiler()->startRecording('rendering');
                $return = preg_replace_callback(
index 2fcff72d59230364b2eaba245c081e01feface76..ab8b712d897a68c604269900159e6e092c12ee60 100644 (file)
@@ -36,7 +36,7 @@ class Plaintext
         *
         * @todo For Twitter URLs aren't shortened, but they have to be calculated as if.
         */
-       public static function shorten(string $msg, int $limit, int $uid = 0):string
+       public static function shorten(string $msg, int $limit, int $uid = 0): string
        {
                $ellipsis = html_entity_decode("&#x2026;", ENT_QUOTES, 'UTF-8');
 
index f8ff91ec554112f4a4a19559f16b4e94ca8369b1..731407fafc1db62d077f77ba03a9426999790146 100644 (file)
@@ -1958,7 +1958,7 @@ class Contact
         * @param string  $updated Contact update date
         * @return string avatar link
         */
-       public static function getAvatarUrlForId(int $cid, string $size = '', string $updated = '', string $guid = ''):string
+       public static function getAvatarUrlForId(int $cid, string $size = '', string $updated = '', string $guid = ''): string
        {
                // We have to fetch the "updated" variable when it wasn't provided
                // The parameter can be provided to improve performance
@@ -1999,7 +1999,7 @@ class Contact
         * @param string  $size One of the Proxy::SIZE_* constants
         * @return string avatar link
         */
-       public static function getAvatarUrlForUrl(string $url, int $uid, string $size = ''):string
+       public static function getAvatarUrlForUrl(string $url, int $uid, string $size = ''): string
        {
                $condition = ["`nurl` = ? AND ((`uid` = ? AND `network` IN (?, ?)) OR `uid` = ?)",
                        Strings::normaliseLink($url), $uid, Protocol::FEED, Protocol::MAIL, 0];
@@ -2015,7 +2015,7 @@ class Contact
         * @param string  $updated Contact update date
         * @return string header link
         */
-       public static function getHeaderUrlForId(int $cid, string $size = '', string $updated = '', string $guid = ''):string
+       public static function getHeaderUrlForId(int $cid, string $size = '', string $updated = '', string $guid = ''): string
        {
                // We have to fetch the "updated" variable when it wasn't provided
                // The parameter can be provided to improve performance