Make PHP-CS happy ...

This commit is contained in:
Philipp 2022-11-16 10:49:12 +01:00
parent 12fb897f54
commit 9621279572
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432
1 changed files with 4 additions and 2 deletions

View File

@ -82,8 +82,10 @@ class Edit extends BaseModule
$this->errorExit($this->t('Post not found.'), HTTPException\BadRequestException::class);
}
$fields = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
'body', 'title', 'uri-id', 'wall', 'post-type', 'guid'];
$fields = [
'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
'body', 'title', 'uri-id', 'wall', 'post-type', 'guid'
];
$item = Post::selectFirstForUser($this->session->getLocalUserId(), $fields, [
'id' => $postId,