summaryrefslogtreecommitdiff
path: root/classes
AgeCommit message (Collapse)Author
2021-11-17better check for dockerAndrew Dolgov
2021-11-17correctly show non-docker git installs as unsupportedAndrew Dolgov
2021-11-16pluginhost: set stricter @paramsAndrew Dolgov
2021-11-16adjust phpdoc tags for hook definitions/constants (make them reference each ↵Andrew Dolgov
other)
2021-11-16not dead: Article.assigntolabel etc are exported methods called by frontend ↵Andrew Dolgov
(Headlines.js)
2021-11-16Merge branch 'wip-phpstan-level6' of git.tt-rss.org:fox/tt-rss into ↵Andrew Dolgov
wip-phpstan-level6
2021-11-16mailer: don't crash if php mail() fails with no reported errorsAndrew Dolgov
2021-11-16Minor fix in 'classes/articles.php'.wn_
It looks like these functions are dead code, though. Adding comments for future review.
2021-11-15 * DiskCache: add download() helperAndrew Dolgov
* Af_Comics_Gocomics_FarSide: cache linked images because it seems to be required anyway
2021-11-15Minor fix to DOMNodeList#item() potential type (null vs false)wn_
2021-11-15deal with several DOMElement-related errorsAndrew Dolgov
2021-11-15set better matching type hint on virtual feed objectAndrew Dolgov
2021-11-15require virtual feed plugins to implement IVirtualFeedAndrew Dolgov
2021-11-15add IVirtualFeed interface for plugins implementing virtual feedsAndrew Dolgov
2021-11-15Merge branch 'wip-phpstan-level6' of git.tt-rss.org:fox/tt-rss into ↵Andrew Dolgov
wip-phpstan-level6
2021-11-15revise phpdoc annotations for hook_search()Andrew Dolgov
2021-11-15Fix a PHPStan warning in 'UrlHelper::rewrite_relative()'.wn_
2021-11-15Address PHPStan warnings for FeedEnclosure.wn_
2021-11-15Address PHPStan warnings in FeedItem classes.wn_
2021-11-14Change the param type for UserHelper::hash_password() $algo to appease PHPStan.wn_
PHPStan was complaining in 'plugins/auth_internal/init.php' due to UserHelper::hash_password() being passed a string, rather than a UserHelper::HASH_ALGO_* constant. Just switching the param to string for now.
2021-11-14Also fix the param signature for Plugin#hook_hotkey_info()wn_
2021-11-14Fix the return signature for Plugin#hook_hotkey_info()wn_
2021-11-14Address PHPStan warning in 'classes/pref/users.php'.wn_
2021-11-14Address PHPStan warning in 'classes/pref/system.php'.wn_
2021-11-14Address PHPStan warning in 'classes/pref/prefs.php'.wn_
Also update 'select_hash' and 'select_tag' values param, which can have int or string keys.
2021-11-14Address PHPStan warning in 'classes/pref/labels.php'.wn_
2021-11-14revise prototype for hook_enclosure_importedAndrew Dolgov
2021-11-14Address PHPStan warning in 'classes/pref/filters.php'.wn_
2021-11-14Address PHPStan warning in 'classes/mailer.php'.wn_
2021-11-14adjust some return types in urlhelperAndrew Dolgov
2021-11-14set phpdoc annotations for auth_baseAndrew Dolgov
2021-11-14revise phpdoc annotations for hook_sanitize()Andrew Dolgov
2021-11-14Handle potentially null link, title, etc. in FeedParser.wn_
2021-11-14plugin.php: add some minor method phpdoc correctionsAndrew Dolgov
2021-11-14userhelper: add a phpdoc variable class hintAndrew Dolgov
2021-11-14deal with the rest of warnings in plugin.phpAndrew Dolgov
2021-11-14deal with a few more phpstan warnings re: base plugin classAndrew Dolgov
2021-11-14fix HOOK_QUERY_HEADLINES being invoked with different argument lists, add ↵Andrew Dolgov
some more phpdoc comments for base plugin class
2021-11-14 * deal with some phpstan warnings in base plugin classAndrew Dolgov
* arguably better hack for incompatible plugins causing E_COMPILE_ERROR
2021-11-14pluginhost: add a hack to not crash on an incompatible plugin more than once ↵Andrew Dolgov
(per login) - UGLY
2021-11-14normalize some mismatching hook function definitions to match base Plugin classAndrew Dolgov
2021-11-14deal with phpstan warnings related to base authentication modulesAndrew Dolgov
2021-11-14Address PHPStan warnings in 'classes/pref/filters.php'.wn_
2021-11-13set some annotations on Plugin hook methodsAndrew Dolgov
2021-11-13experimental: bring back plugin hooks to Plugin base class once (to be ↵Andrew Dolgov
improved/fixed with annotations later)
2021-11-13deal with some warnings in plugins/trgm,readability and base plugin classAndrew Dolgov
2021-11-13no need to duplicate annotationsAndrew Dolgov
2021-11-13rework previous Plugin changes as phpdoc annotationsAndrew Dolgov
2021-11-13revert all plugin base class related changes to keep compatibility with ↵Andrew Dolgov
extant plugins (for the time being)
2021-11-13minor: correct $cat type in Pref_Feeds#calculate_children_count()wn_