mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-07 16:08:41 -05:00
* Add PHPStan #fix https://github.com/FreshRSS/FreshRSS/issues/4016 https://phpstan.org/ ```sh composer run-script phpstan ``` * More fixes * Fix global variables * Add .phtml * Fix merge https://github.com/FreshRSS/FreshRSS/pull/4090 * Fix more warnings * Fix view errors and enable in CI * ReturnTypeWillChange * Dynamic view type * Fix Minz static/self bug
18 lines
355 B
PHTML
18 lines
355 B
PHTML
<?php
|
|
/** @var FreshRSS_View $this */
|
|
$this->partial('aside_configure');
|
|
?>
|
|
|
|
<main class="post">
|
|
<div class="link-back-wrapper">
|
|
<a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a>
|
|
</div>
|
|
|
|
<h1><?= _t('admin.update') ?></h1>
|
|
|
|
<?php
|
|
// @phpstan-ignore-next-line
|
|
ask_info_update();
|
|
?>
|
|
</main>
|