summaryrefslogtreecommitdiff
path: root/classes/UserHelper.php
AgeCommit message (Collapse)Author
2025-04-27Remove an unnecessary session UID existence check in ↵wn_
'UserHelper::authenticate()'. PHPStan 'if.alwaysTrue'
2025-03-04Get rid of the 'language' session variable.wn_
It had issues (no profile usage, only set at login), so it's cleanest to just replace its one usage with 'Prefs::get()'.
2024-11-24Use match expressions in some places.wn_
2024-11-23Use native union types in most places.wn_
2024-11-18Eliminate use of deprecated 'get_pref()' and 'set_pref()'.wn_
2024-11-12Remove some PHPStan ignores and make others rule-specific.wn_
2024-11-12Address PHPStan findings as of 2.0.1wn_
2024-08-16enforce lowercase usernames while keeping backwards-compatibility for ↵Andrew Dolgov
authentication
2024-07-11Add and use the 'Sessions' class.wn_
2024-03-26Make implicit nullable parameters explicitly nullable.wn_
This is to address a deprecation planned for PHP 8.4. https://wiki.php.net/rfc/deprecate-implicitly-nullable-types
2024-01-08Clean up some unused variables.wn_
This is essentially https://gitlab.tt-rss.org/wn/tt-rss/-/commit/1ccc0c8c1af04dd9654b585c6d07e3a75d944a0c without the renames and some other things related to Psalm.
2023-10-25move to psr-4 autoloaderAndrew Dolgov