]> git.mxchange.org Git - friendica.git/commitdiff
Remove blanks
authorMichael <heluecht@pirati.ca>
Sun, 9 May 2021 11:54:34 +0000 (11:54 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 9 May 2021 11:54:34 +0000 (11:54 +0000)
include/enotify.php
src/Factory/Api/Mastodon/Notification.php
src/Model/Contact.php
src/Module/Api/Mastodon/Accounts/Search.php

index 3aa38c1c443624abc60bb5cc7c6120b09e0da57b..1edad36ac0c79bd6383a72c60376e8b4660d8877 100644 (file)
@@ -41,7 +41,7 @@ use Friendica\Protocol\Activity;
  *                      type, event, otype, activity, verb, uid, cid, origin_cid, item, link,
  *                      source_name, source_mail, source_nick, source_link, source_photo,
  *                      show_in_notification_page
- * 
+ *
  * @return bool
  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
  */
@@ -273,7 +273,7 @@ function notification($params)
                        $epreamble = $l10n->t('%1$s [url=%2$s]shared a post[/url] from %3$s.',
                                '[url='.$params['source_link'].']'.$params['source_name'].'[/url]',
                                $params['link'], '[url='.$params['origin_link'].']'.$params['origin_name'].'[/url]'
-                       );                      
+                       );
                }
 
                $sitelink = $l10n->t('Please visit %s to view and/or reply to the conversation.');
index 78b106c04e63c23e41666fa017aa7059adc1770c..d9588b450d4c01908f073253c25116f5a07a107d 100644 (file)
@@ -67,7 +67,7 @@ class Notification extends BaseFactory
                        case ModelNotification\Type::SHARE:
                                $type = 'status';
                                break;
-                       
+
                        default:
                                return null;
                }
index 876369f30410c024921fe3918a1238e07b339d14..f75cffadacd08ed5e5a2edbdca4c03c6f69a1589 100644 (file)
@@ -264,7 +264,7 @@ class Contact
                        $condition = ['`alias` IN (?, ?, ?) AND `uid` = ? AND NOT `deleted`', $url, Strings::normaliseLink($url), $ssl_url, $uid];
                        $contact = DBA::selectFirst('contact', $fields, $condition, $options);
                }
-               
+
                if (!DBA::isResult($contact)) {
                        return [];
                }
@@ -307,7 +307,7 @@ class Contact
                }
 
                $contact = self::getByURL($url, $update, $fields);
-               if (!empty($contact['id'])) {           
+               if (!empty($contact['id'])) {
                        $contact['cid'] = 0;
                        $contact['zid'] = $contact['id'];
                }
@@ -1274,7 +1274,7 @@ class Contact
         *
         * @param string $contact_url Contact URL
         * @param bool   $thread_mode
-        * @param int    $update      Update mode 
+        * @param int    $update      Update mode
         * @param int    $parent      Item parent ID for the update mode
         * @return string posts in HTML
         * @throws \Exception
@@ -1289,7 +1289,7 @@ class Contact
         *
         * @param int  $cid         Contact ID
         * @param bool $thread_mode
-        * @param int  $update      Update mode 
+        * @param int  $update      Update mode
         * @param int  $parent     Item parent ID for the update mode
         * @return string posts in HTML
         * @throws \Exception
@@ -1347,7 +1347,7 @@ class Contact
                        $o = '';
                }
 
-               if ($thread_mode) {             
+               if ($thread_mode) {
                        $items = Post::toArray(Post::selectForUser(local_user(), ['uri-id', 'gravity', 'parent-uri-id', 'thr-parent-id', 'author-id'], $condition, $params));
 
                        $o .= conversation($a, $items, 'contacts', $update, false, 'commented', local_user());
@@ -1607,12 +1607,12 @@ class Contact
                                $avatar['size'] = 48;
                                $default = self::DEFAULT_AVATAR_MICRO;
                                break;
-       
+
                        case Proxy::SIZE_THUMB:
                                $avatar['size'] = 80;
                                $default = self::DEFAULT_AVATAR_THUMB;
                                break;
-       
+
                        case Proxy::SIZE_SMALL:
                        default:
                                $avatar['size'] = 300;
@@ -1720,7 +1720,7 @@ class Contact
                                        $contact['thumb'] ?? '',
                                        $contact['micro'] ?? '',
                                ];
-               
+
                                foreach ($data as $image_uri) {
                                        $image_rid = Photo::ridFromURI($image_uri);
                                        if ($image_rid && !Photo::exists(['resource-id' => $image_rid, 'uid' => $uid])) {
@@ -2027,7 +2027,7 @@ class Contact
                        if (Contact\Relation::isDiscoverable($ret['url'])) {
                                Worker::add(PRIORITY_LOW, 'ContactDiscovery', $ret['url']);
                        }
-       
+
                        // Update the public contact
                        if ($uid != 0) {
                                $contact = self::getByURL($ret['url'], false, ['id']);
index 17adb54851915a0aa3378c64bf1b37917cd93091..0eda36e31edf81d2f6ebda7b24e6990bdea0905a 100644 (file)
@@ -74,7 +74,7 @@ class Search extends BaseApi
                                        }
                                        if ($result instanceof ContactResult) {
                                                $id = Contact::getIdForURL($result->getUrl(), 0, false);
-                                               $accounts[] = DI::mstdnAccount()->createFromContactId($id, $uid);       
+                                               $accounts[] = DI::mstdnAccount()->createFromContactId($id, $uid);
                                        }
                                }
                        }