Changes:
- methods should ALWAYS start lower-case, not upper - documented a bit more
This commit is contained in:
parent
9794ce0c87
commit
33c7abd376
|
@ -46,9 +46,12 @@ class Conversation extends BaseFactory
|
|||
}
|
||||
|
||||
/**
|
||||
* @param int $id Conversation id
|
||||
*
|
||||
* @return \Friendica\Object\Api\Mastodon\Conversation
|
||||
* @throws ImagickException|HTTPException\InternalServerErrorException|HTTPException\NotFoundException
|
||||
*/
|
||||
public function CreateFromConvId(int $id): \Friendica\Object\Api\Mastodon\Conversation
|
||||
public function createFromConvId(int $id): \Friendica\Object\Api\Mastodon\Conversation
|
||||
{
|
||||
$accounts = [];
|
||||
$unread = false;
|
||||
|
|
|
@ -85,7 +85,7 @@ class Conversations extends BaseApi
|
|||
|
||||
while ($conv = DBA::fetch($convs)) {
|
||||
self::setBoundaries($conv['id']);
|
||||
$conversations[] = DI::mstdnConversation()->CreateFromConvId($conv['id']);
|
||||
$conversations[] = DI::mstdnConversation()->createFromConvId($conv['id']);
|
||||
}
|
||||
|
||||
DBA::close($convs);
|
||||
|
|
|
@ -42,6 +42,6 @@ class Read extends BaseApi
|
|||
|
||||
DBA::update('mail', ['seen' => true], ['convid' => $this->parameters['id'], 'uid' => $uid]);
|
||||
|
||||
System::jsonExit(DI::mstdnConversation()->CreateFromConvId($this->parameters['id'])->toArray());
|
||||
System::jsonExit(DI::mstdnConversation()->createFromConvId($this->parameters['id'])->toArray());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user