apply StyleCI patch, fixes #1084

This commit is contained in:
El RIDO
2023-06-18 12:54:22 +02:00
parent 5b458a17c2
commit 8988899c8c
7 changed files with 34 additions and 35 deletions
+4 -5
View File
@@ -229,11 +229,10 @@ class Filesystem extends AbstractData
// Store in array
$key = $this->getOpenSlot(
$comments, (
(int) array_key_exists('created', $comment['meta']) ?
$comment['meta']['created'] : // v2 comments
$comment['meta']['postdate'] // v1 comments
)
$comments,
(int) array_key_exists('created', $comment['meta']) ?
$comment['meta']['created'] : // v2 comments
$comment['meta']['postdate'] // v1 comments
);
$comments[$key] = $comment;
}