]> git.mxchange.org Git - friendica.git/commitdiff
Make PHP-CS happy
authorPhilipp <admin@philipp.info>
Tue, 15 Nov 2022 00:10:49 +0000 (01:10 +0100)
committerPhilipp <admin@philipp.info>
Tue, 15 Nov 2022 00:10:49 +0000 (01:10 +0100)
src/Module/Item/Display.php
src/Module/Item/Feed.php
src/Module/Update/Display.php

index 7a0e589f82efbe3ee6dce6d2e751b86b6f050104..1b54081d39795e7d9f8ade42e192b0600c9ba0af 100644 (file)
@@ -138,7 +138,8 @@ class Display extends BaseModule
                                'uid'    => [0, $itemUid],
                                'uri-id' => $item['parent-uri-id']
                        ], ['order' => ['uid' => true]]);
-                       $item   = $parent ?: $item;
+
+                       $item = $parent ?: $item;
                }
 
                if (!$this->pConfig->get($this->session->getLocalUserId(), 'system', 'detailed_notif')) {
@@ -224,12 +225,11 @@ class Display extends BaseModule
                $sql_extra = Item::getPermissionsSQLByUserId($pageUid);
 
                if ($this->session->getLocalUserId() && ($this->session->getLocalUserId() == $pageUid)) {
-                       $condition = [
+                       $unseen = Post::exists([
                                'parent-uri-id' => $item['parent-uri-id'],
                                'uid'           => $this->session->getLocalUserId(),
                                'unseen'        => true
-                       ];
-                       $unseen    = Post::exists($condition);
+                       ]);
                } else {
                        $unseen = false;
                }
@@ -239,9 +239,12 @@ class Display extends BaseModule
                }
 
                $condition = ["`uri-id` = ? AND `uid` IN (0, ?) " . $sql_extra, $item['uri-id'], $itemUid];
-               $fields    = ['parent-uri-id', 'body', 'title', 'author-name', 'author-avatar', 'plink', 'author-id',
-                                         'owner-id', 'contact-id'];
-               $item      = Post::selectFirstForUser($pageUid, $fields, $condition);
+               $fields    = [
+                       'parent-uri-id', 'body', 'title', 'author-name', 'author-avatar', 'plink', 'author-id',
+                       'owner-id', 'contact-id'
+               ];
+
+               $item = Post::selectFirstForUser($pageUid, $fields, $condition);
 
                if (empty($item)) {
                        throw new HTTPException\NotFoundException($this->t('The requested item doesn\'t exist or has been deleted.'));
@@ -277,11 +280,10 @@ class Display extends BaseModule
        {
                if (Post::exists(['uri-id' => $uriId, 'private' => [Item::PUBLIC, Item::UNLISTED]])) {
                        // For the atom feed the nickname doesn't matter at all, we only need the item id.
-                       $alternate              = sprintf('display/feed-item/%s.atom', $uriId);
-                       $conversation           = sprintf('display/feed-item/%s/conversation.atom', $parentUriId);
-                       $this->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('display-head.tpl'),
-                               ['$alternate'    => $alternate,
-                                '$conversation' => $conversation]);
+                       $this->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('display-head.tpl'), [
+                               '$alternate'    => sprintf('display/feed-item/%s.atom', $uriId),
+                               '$conversation' => sprintf('display/feed-item/%s/conversation.atom', $parentUriId)
+                       ]);
                }
        }
 
@@ -317,8 +319,10 @@ class Display extends BaseModule
 
                $page = $this->page;
 
-               if (Contact::exists(['unsearchable' => true,
-                                                        'id'           => [$item['contact-id'], $item['author-id'], $item['owner-id']]])) {
+               if (Contact::exists([
+                       'unsearchable' => true,
+                       'id'           => [$item['contact-id'], $item['author-id'], $item['owner-id']]
+               ])) {
                        $page['htmlhead'] .= "<meta content=\"noindex, noarchive\" name=\"robots\" />\n";
                }
 
index 8830cb0afa1472897045549f3810744d8f4c91e6..c1b12446c8e687ad415722ec68eb8b3b7e53505f 100644 (file)
@@ -72,9 +72,9 @@ class Feed extends BaseModule
                        'guid',
                        'gravity',
                ], [
-                       'uri-id' => $uriId,
+                       'uri-id'  => $uriId,
                        'private' => [Item::PUBLIC, Item::UNLISTED],
-                       'uid' => 0,
+                       'uid'     => 0,
                ]);
 
                if (empty($item)) {
index a8dea82e1ccdc0d5895e7193f71bdce95802a415..9467badf327639386841d19042b6ee08d32218d6 100644 (file)
@@ -38,9 +38,9 @@ class Display extends DisplayModule
                        throw new HTTPException\UnauthorizedException($this->t('Access denied.'));
                }
 
-               $profileUid  = $request['p'] ?? 0;
-               $force       = $request['force'] ?? false;
-               $uriId       = $request['uri_id'] ?? 0;
+               $profileUid = $request['p'] ?? 0;
+               $force      = $request['force'] ?? false;
+               $uriId      = $request['uri_id'] ?? 0;
 
                if (empty($uriId)) {
                        throw new HTTPException\BadRequestException($this->t('Parameter uri_id is missing.'));
@@ -63,8 +63,10 @@ class Display extends DisplayModule
                        $browserUpdate = $this->pConfig->get($profileUid, 'system', 'update_interval');
                        if (!empty($browserUpdate)) {
                                $updateDate = date(DateTimeFormat::MYSQL, time() - (intval($browserUpdate) / 500));
-                               if (!Post::exists(["`parent-uri-id` = ? AND `uid` IN (?, ?) AND `received` > ?", $parentUriId, 0,
-                                                                  $profileUid, $updateDate])) {
+                               if (!Post::exists([
+                                       "`parent-uri-id` = ? AND `uid` IN (?, ?) AND `received` > ?",
+                                       $parentUriId, 0,
+                                       $profileUid, $updateDate])) {
                                        $this->logger->debug('No updated content. Ending process',
                                                ['uri-id' => $uriId, 'uid' => $profileUid, 'updated' => $updateDate]);
                                        return '';