Improve class alias naming in Object\Post

This commit is contained in:
Hypolite Petovan 2021-01-16 08:12:41 -05:00 committed by GitHub
parent 2fa692bcce
commit e68f7444ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\Contact;
use Friendica\Model\Item;
use Friendica\Model\Post as ModelPost;
use Friendica\Model\Post as PostModel;
use Friendica\Model\Tag;
use Friendica\Model\User;
use Friendica\Protocol\Activity;
@ -213,7 +213,7 @@ class Post
if (!$origin) {
/// @todo This shouldn't be done as query here, but better during the data creation.
// it is now done here, since during the RC phase we shouldn't make to intense changes.
$parent = ModelPost::selectFirst(['origin'], ['id' => $item['parent']]);
$parent = PostModel::selectFirst(['origin'], ['id' => $item['parent']]);
if (DBA::isResult($parent)) {
$origin = $parent['origin'];
}
@ -876,7 +876,7 @@ class Post
return '';
}
$item = ModelPost::selectFirst(['author-addr', 'uri-id'], ['id' => $this->getId()]);
$item = PostModel::selectFirst(['author-addr', 'uri-id'], ['id' => $this->getId()]);
if (!DBA::isResult($item) || empty($item['author-addr'])) {
// Should not happen
return '';