Make PHP-CS happy ...
This commit is contained in:
parent
12fb897f54
commit
9621279572
1 changed files with 4 additions and 2 deletions
|
@ -82,8 +82,10 @@ class Edit extends BaseModule
|
||||||
$this->errorExit($this->t('Post not found.'), HTTPException\BadRequestException::class);
|
$this->errorExit($this->t('Post not found.'), HTTPException\BadRequestException::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
$fields = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
|
$fields = [
|
||||||
'body', 'title', 'uri-id', 'wall', 'post-type', 'guid'];
|
'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
|
||||||
|
'body', 'title', 'uri-id', 'wall', 'post-type', 'guid'
|
||||||
|
];
|
||||||
|
|
||||||
$item = Post::selectFirstForUser($this->session->getLocalUserId(), $fields, [
|
$item = Post::selectFirstForUser($this->session->getLocalUserId(), $fields, [
|
||||||
'id' => $postId,
|
'id' => $postId,
|
||||||
|
|
Loading…
Reference in a new issue