mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-08-07 04:33:14 -04:00
Upgrade code to php 8.1 (#6748)
* revert Fix code indentation Fix code Upgrade code to php 8.1 * fix remarques * code review * code review * code review * Apply suggestions from code review * code review * Fixes * Many remainging updates of array syntax * Lost case 'reading-list' * Uneeded PHPDoc --------- Co-authored-by: Luc Sanchez <l.sanchez-prestataire@alptis.fr> Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
This commit is contained in:
81 files changed
+532
-680
No files matched your search
@@ -5,18 +5,18 @@ $username = Minz_User::name() ?? Minz_User::INTERNAL_USER;
|
||||
|
||||
$options = JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE;
|
||||
|
||||
$articles = array(
|
||||
$articles = [
|
||||
'id' => 'user/' . str_replace('/', '', $username) . '/state/org.freshrss/' . $this->type,
|
||||
'title' => $this->list_title,
|
||||
'author' => $username,
|
||||
'items' => array(),
|
||||
);
|
||||
'items' => [],
|
||||
];
|
||||
|
||||
echo rtrim(json_encode($articles, $options) ?: '', " ]}\n\r\t"), "\n";
|
||||
$first = true;
|
||||
|
||||
if (empty($this->entryIdsTagNames)) {
|
||||
$this->entryIdsTagNames = array();
|
||||
$this->entryIdsTagNames = [];
|
||||
}
|
||||
|
||||
foreach ($this->entries as $entry) {
|
||||
|
||||
Reference in new issue
Block a user