diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2021-02-08 21:11:56 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2021-02-08 21:11:56 +0300 |
| commit | 6e57fd77afbf43cee5e030f64c7598be8a97916e (patch) | |
| tree | a58537a9a91651bdf3dcdd60eacd9637cacea2b1 /classes/pluginhost.php | |
| parent | a14873d5b4bde01f1470db5a2bb0d49ac0c8cd3c (diff) | |
db: add type hints
Diffstat (limited to 'classes/pluginhost.php')
| -rwxr-xr-x | classes/pluginhost.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/pluginhost.php b/classes/pluginhost.php index d94279706..8c5e31ad3 100755 --- a/classes/pluginhost.php +++ b/classes/pluginhost.php @@ -111,7 +111,7 @@ class PluginHost { return Db::get(); } - function get_pdo() { + function get_pdo(): PDO { return $this->pdo; } |