1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 05:55:55 +00:00

plugin base: add type hint to init(host)

This commit is contained in:
Andrew Dolgov
2017-12-03 10:11:32 +03:00
parent 49a888ecce
commit 69563c96b4

View File

@@ -5,6 +5,7 @@ abstract class Plugin {
/** @var PDO */
protected $pdo;
/* @var PluginHost $host */
abstract function init($host);
abstract function about();