Fix more standards

This commit is contained in:
Michael 2023-02-13 23:53:43 +00:00
parent 2367f54d41
commit c643eb8cb2
1 changed files with 5 additions and 2 deletions

View File

@ -325,7 +325,10 @@ class ClientToServer
*/
public static function getOutbox(array $owner, int $uid, int $page = null, int $max_id = null, string $requester = ''): array
{
$condition = ['gravity' => [Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT], 'private' => [Item::PUBLIC, Item::UNLISTED]];
$condition = [
'gravity' => [Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT],
'private' => [Item::PUBLIC, Item::UNLISTED]
];
if (!empty($requester)) {
$requester_id = Contact::getIdForURL($requester, $owner['uid']);